OKHttp
Posted 安卓笔记侠
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了OKHttp相关的知识,希望对你有一定的参考价值。
一.原生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的主要内容,如果未能解决你的问题,请参考以下文章