參考地址 http://blog.csdn.net/lmj623565791/article/details/47911083
client 基礎(chǔ)配置
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)//設(shè)置讀取超時時間
.writeTimeout(WRITE_TIMEOUT, TimeUnit.SECONDS)//設(shè)置寫的超時時間
.connectTimeout(CONNECT_TIMEOUT, TimeUnit.SECONDS)//設(shè)置連接超時時間
.build();
get方法
參數(shù):
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方法
參數(shù):
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);
}
}
調(diào)用:
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){
//在子線程中調(diào)用ui線程
runOnUiThread(new Runnable() {
@Override
public void run() {
Toast.makeText(ActivationCardActivity.this, msg, Toast.LENGTH_SHORT).show();
finish();
}
});
}
} catch (IOException e) {
e.printStackTrace();
}
}
}.start();