Android Okhttp3 传递数组参数
背景
作安卓项目时与php有些交互需要使用到数组,起初使用java的数组、json转字符、在字符中加[" "]都没有效果。最后看到php同事开发使用postmen上传数组参数是使用key[]表示数组参数。问题得以解决。
代码示例
环境:window10 64,android studio3.1,okhttp3.4.1
使用方法:
在app的build.gradle 文件的 dependencies 闭包添加 implementation ‘com.squareup.okhttp3:okhttp:3.4.1’ , 最后点击Sysnc Now ,等待下载完成。
在AndroidManifest.xml 添加<uses-permission android:name="android.permission.INTERNET" />
权限。
private void showResponse(final String response) {
runOnUiThread(new Runnable() {
@Override
public void run() {
Toast.makeText(MainActivity.this, response,Toast.LENGTH_SHORT).show();
}
});
}
public void testOKHttp(){
new Thread(new Runnable() {
@Override
public void run() {
try{
//设置post参数
okhttp3.RequestBody requestBody = new okhttp3.FormBody.Builder()
.add("coinType","1")
.add("param1[]","0xe9b9f56ba364234747523bcaa84390c3e9f7ae94")
.add("param1[]","0xe924a999a3a7a5f4f0b8690df9f173da01efec97")
.build();
//构建请求
OkHttpClient client = new OkHttpClient();
okhttp3.Request request = new okhttp3.Request.Builder()
.url("http://23242l71o7.51mypc.cn:28204/block_link_new/public/pooling/getBalance")
.post(requestBody)
.build();
//执行获取返回
okhttp3.Response response = client.newCall(request).execute() ;
String responseData = response.body().string();
showResponse(responseData);
}catch (Exception e){
e.printStackTrace();
}
}
}).start();
}
上面的url 是我的花生壳地址,如果我没关闭的话,可以访问到数据
{
“data”: {
“0xe924a999a3a7a5f4f0b8690df9f173da01efec97”: 0,
“0xe9b9f56ba364234747523bcaa84390c3e9f7ae94”: 0
},
“info”: “获取成功”,
“status”: 10000
}