OKHttp_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > OKHttp

OKHttp

 2016/11/3 5:32:54  ganchuanpu  程序员俱乐部  我要评论(0)
  • 摘要:一.原生OKHttp的Get和Post请求1.OKHttp_GET请求privateStringget(Stringurl)throwsIOException{Requestrequest=newRequest.Builder().url(url).build();Responseresponse=client.newCall(request).execute();returnresponse.body().string();}2.OKHttp_POST请求privateStringpost
  • 标签:HTTP

一.原生OKHttp的Get和Post请求

1.OKHttp_GET 请求

class="brush:java;gutter:true;">private String get(String url) throws IOException {
        Request request = new Request.Builder()
                .url(url)
                .build();
        Response response = client.newCall(request).execute();
        return response.body().string();
    }

  

2.OKHttp_POST 请求

 

private String post(String url, String json) throws IOException {
        RequestBody body = RequestBody.create(JSON, json);
        Request request = new Request.Builder()
                .url(url)
                .post(body)
                .build();
        Response response = client.newCall(request).execute();
        return response.body().string();
    }

 

  

 

 


 

二.第三方封装好的OKHttp-okhttp-utils

 

发表评论
用户名: 匿名