android使用retrofit
build.gradle
compile group: 'com.squareup.retrofit', name: 'converter-gson', version: '2.0.0-beta2'
config
public class RestAdapter { private final String API = "http://192.168.0.102:8080/"; private Retrofit retrofit; public RestAdapter() { // Creates the json object which will manage the information received GsonBuilder builder = new GsonBuilder(); // Register an adapter to manage the date types as long values // builder.registerTypeAdapter(Date.class, new JsonDeserializer<Date>() { // public Date deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException { // return new Date(json.getAsJsonPrimitive().getAsLong()); // } // }); // // builder.setDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ"); builder.registerTypeAdapter(Date.class, new GsonUTCDateAdapter()); Gson gson = builder.create(); this.retrofit = new Retrofit.Builder() .baseUrl(API) .addConverterFactory(GsonConverterFactory.create(gson)) .build(); } public Retrofit getRetrofit() { return retrofit; } }
api
public interface ApiService { @GET("article/list") Call<List<Article>> getByDate(@Query("begin")String begin, @Query("end")String end); @GET("article/tags") Call<List<String>> getTags(); @POST("article/{id}") Call<Known> update(@Path("id") String id,@Body Article article); @POST("article") Call<Void> create(@Body Article article); @DELETE("article/{id}") Call<Void> delete(@Path("id") String id); }
创建接口实例
ApiService apiService = new RestAdapter().getRetrofit().create(ApiService.class);
之后正常调用即可。同步的话,直接execute,比如
Call<List<Article>> call = apiService.getByDate(begin,end); Response<List<Article>> resp = null; try { resp = call.execute(); } catch (IOException e) { e.printStackTrace(); return Collections.emptyList(); }
docs
相关推荐
霸气的名字 2020-06-23
smaillift 2020-02-17
霸气的名字 2020-02-15
RikkaTheWorld 2019-12-08
TOmyhonour 2019-11-08
齐天大圣数据候 2019-10-31
kcstrong 2019-10-19
冰川孤辰 2019-09-08
kangtingting0 2019-09-07
俊光 2018-08-10
俊光 2019-07-30
xzw 2019-07-01
smaillift 2019-07-01
javashu0 2019-07-01
needh 2019-06-30
kcstrong 2019-06-28
qjbagu 2016-04-05
霸气的名字 2019-06-27