android 中okhttp post请求传递json数据

参考地址 http://blog.csdn.net/lmj623565791/article/details/47911083
client 基础配置

public final static int CONNECT_TIMEOUT = 60;
public final static int READ_TIMEOUT = 100;
public final static int WRITE_TIMEOUT = 60;
public static final OkHttpClient client = new OkHttpClient.Builder()
        .readTimeout(READ_TIMEOUT, TimeUnit.SECONDS)//设置读取超时时间
        .writeTimeout(WRITE_TIMEOUT, TimeUnit.SECONDS)//设置写的超时时间
        .connectTimeout(CONNECT_TIMEOUT, TimeUnit.SECONDS)//设置连接超时时间
        .build();

get方法
参数:
url get请求地址

    public String get(String url) throws IOException {
    Request request = new Request.Builder().url(url).get().build();
    Response response = client.newCall(request).execute();
    if (response.isSuccessful()) {
        return response.body().string();
    } else {
        throw new IOException("Unexpected code " + response);
    }
}

post方法
参数:
url post请求地址
json json字符串

public static final MediaType JSON = MediaType.parse("application/json; charset=utf-8");

public static 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();
    if (response.isSuccessful()) {
        return response.body().string();
    } else {
        throw new IOException("Unexpected code " + response);
    }
}

调用:

new Thread() {
    @Override
    public void run() {
        //传的json
        JSONObject jsonObject = new JSONObject();
        try {
            String callStr = OKHttpTool.post(HttpUrl.API_ACTIVE, jsonObject.toString());
            JSONObject call_json = new JSONObject(callStr);
            final String msg = call_json.getString("msg");
            if (call_json.getInt("status") == 1){
                //在子线程中调用ui线程
                runOnUiThread(new Runnable() {
                    @Override
                    public void run() {
                        Toast.makeText(ActivationCardActivity.this, msg, Toast.LENGTH_SHORT).show();
                        finish();
                    }
                });
            }
        } catch (IOException e) {
            e.printStackTrace();
        }

    }
}.start();
  • 16
    点赞
  • 18
    收藏
    觉得还不错? 一键收藏
  • 4
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值