博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
OkHttp的post请求
阅读量:5273 次
发布时间:2019-06-14

本文共 733 字,大约阅读时间需要 2 分钟。

OkHttpClient client = new OkHttpClient();

FormBody body = new FormBody.Builder()
.add("mobile",mNumber)
.add("type","1").build();
final Request request = new Request.Builder()
.url(mPath)
.post(body).build();
Call call = client.newCall(request);
call.enqueue(new Callback() {
@Override
public void onFailure(Call call, IOException e) {

}

@Override

public void onResponse(Call call, Response response) throws IOException {
  if (response.isSuccessful()){
    String d = response.body().string();
    Gson gson = new Gson();
    RegisterData data = gson.fromJson(d, RegisterData.class);
    Message msg = Message.obtain();
    msg.obj = data;
    handler.sendMessage(msg);
  }
}
});

转载于:https://www.cnblogs.com/bwandroid/p/5631771.html

你可能感兴趣的文章
Python3控制结构与函数
查看>>
字符串方法title()、istitle()
查看>>
yield语句
查看>>
Html.Partial和Html. RenderPartial用法
查看>>
查看linux系统中占用cpu最高的语句
查看>>
[洛谷P1738]洛谷的文件夹
查看>>
ubuntu server设置时区和更新时间
查看>>
《弟子规》下的沉思
查看>>
网络流24题 飞行员配对方案问题
查看>>
剑指offer python版 调整数组顺序使奇数位于偶数前面
查看>>
Leader of All Crushing Machines in the Future
查看>>
设置dataGridView单元格颜色、字体、ToolTip、字体颜色
查看>>
wx-charts 微信小程序图表 -- radarChart C# .net .ashx 测试
查看>>
对项目重命名
查看>>
Scrapy框架简介及小项目应用
查看>>
tkinter学习三
查看>>
CentOS自带定时任务crontab
查看>>
基因组拼接中常见的名词解释
查看>>
##CS3动画效果
查看>>
nginx 配置 http重定向到https
查看>>