【发布时间】:2017-03-16 07:25:39
【问题描述】:
我正在使用以下代码进行 api 调用并根据收到的响应将用户引导到页面。如何检查互联网连接?
我正在使用 OK HTTP 客户端,我的代码如下所示:
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String url = "https://xxxxxxxx/" + orderLineId;
JSONObject jSon = new JSONObject();
try {
jSon.put("prescription_xxxxx", prescriptionIntervalId);
jSon.put("prescription_xxxxxxx", false);
} catch (JSONException e) {
e.printStackTrace();
}
String data = jSon.toString();
RequestBody body = RequestBody.create(JSON, data);
Request request = new Request.Builder()
.url(url)
.addHeader("Content-Type", "application/json")
.addHeader("Authorization", token)
.addHeader("Accept", "application/json")
.put(body)
.build();
client.newCall(request).enqueue(new Callback() {@Override
public void onFailure(Request request, IOException e) {
AlertDialog.Builder dialog = new AlertDialog.Builder(AutoRefillActivity.this);
dialog.setMessage("Something went wrong. Check connection.")
.setCancelable(false)
.setPositiveButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
onBackPressed();
}
});
AlertDialog alert = dialog.create();
alert.show();
}
@Override
public void onResponse(Response response) throws IOException {
if(response.code()==401){
AlertDialog.Builder dialog = new AlertDialog.Builder(AutoRefillActivity.this);
dialog.setMessage("Device was idle for too long please login again.")
.setCancelable(false)
.setPositiveButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
onBackPressed();
}
});
AlertDialog alert = dialog.create();
alert.show();
}
else {
Intent paymentSummary = new Intent(AutoRefillActivity.this,PPPaymentSummaryActivityNew.class);
paymentSummary.putExtra(PPPaymentSummaryActivityNew.EXTRA_ORDER,String.valueOf(orderLineId));
paymentSummary.putExtra("order_line_id",orderLineId);
paymentSummary.putExtra(PPPaymentSummaryActivityNew.EXTRA_CATEGORY_CODE,categoryCode);
paymentSummary.putExtra("prescriptionIntervalId",prescriptionIntervalId);
paymentSummary.putExtra("available",available);
paymentSummary.putExtra("token",token);
Bundle newBundle = new Bundle();
newBundle.putParcelable(PPPaymentSummaryActivityNew.EXTRA_PRODUCT,product);
paymentSummary.putExtras(newBundle);
startActivity(paymentSummary);
}
}
虽然我在异步请求的 onFailure 中放置了一个警告框。这是行不通的。我仍然可以关闭互联网并且我的应用程序崩溃了。有什么解决办法吗?
【问题讨论】:
-
您好,您解决了 HttpStatusCode 问题吗?我遇到了同样的问题...谢谢。
标签: java android android-studio https okhttp