码迷,mamicode.com
首页 > Web开发 > 详细

OKHttp

时间:2016-11-03 02:45:23      阅读:271      评论:0      收藏:0      [点我收藏+]

标签:except   url   res   封装   第三方   request   post请求   cut   exception   

一.原生OKHttp的Get和Post请求

1.OKHttp_GET 请求

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

 

OKHttp

标签:except   url   res   封装   第三方   request   post请求   cut   exception   

原文地址:http://www.cnblogs.com/ganchuanpu/p/6021412.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!