Android Retrofit 入门教程

首先添加依赖

compile 'com.squareup.retrofit2:retrofit:2.3.0'
compile 'com.squareup.retrofit2:converter-gson:2.3.0'//请求结果直接转化为实体类,省略gson转化

创建一个接口

// 完整地址: http://www.wuhaojun.com/api/android/customer?type=1
public interface CustomerService {
    @GET("/api/android/customer")//Get请求地址
    Call getCustomer(@Query("type") int type);//定义参数type的当前是第几页 1,2,3 ...
}

请求方法

        String baseUrl = "http://www.wuhaojun.com/";//请求地址,固定的一部分
        Retrofit retrofit = new Retrofit.Builder()
                .baseUrl(baseUrl)
                .addConverterFactory(GsonConverterFactory.create())//请求结果直接转化实体类
                .build();

        CustomerService movieService = retrofit.create(CustomerService.class);//创建对象
        Call call = movieService.getCustomer(1);//传递请求参数 对应接口中的定义
        call.enqueue(new Callback() {
            @Override
            public void onResponse(Call call, Response response) {
                Log.i(TAG, "onResponse: "+response.body().getMessage());//返回的就是实体类,不需要Gson转换
            }

            @Override
            public void onFailure(Call call, Throwable t) {
                Log.i(TAG, "onFailure: "+t.getMessage());
            }
        });

最后,别忘了添加网络权限


附加其他上传类型

//post json
    @POST
    Call reJson(@Url String url, @Body RequestBody body);

    HashMap params = new HashMap<>();
    params.put("phone_num", "123");
    JSONObject json = new JSONObject(params);
    RequestBody body = RequestBody.create(okhttp3.MediaType.parse("application/json;charset=utf-8"), json);//转化类型


//post params
    @POST
    @FormUrlEncoded
    Call reParams(@Url String url, @FieldMap Map map);

    HashMap hashMap = new HashMap<>();
    hashMap.put("user", "test");    
    
    
//post file map
    @POST
    @Multipart
    Call reUploadFile(@Url String url, @PartMap Map params);
    
    File file = new File("");
    Map hashMap = new HashMap<>();
    hashMap.put("json", RequestBody.create(MediaType.parse("text/plain"), "jsonargs"));//键值对
    hashMap.put("file\"; filename=\"" + file.getName(), RequestBody.create(MediaType.parse("multipart/form-data"), file));//文件

大神tough1985文章:http://gank.io/post/56e80c2c677659311bed9841

你可能感兴趣的:(Android Retrofit 入门教程)