如何在下面的代码中Android parse JSON and avoid app crashing if JSONException处实现此解决方案,以便在解析它之前获得JSON响应,从而避免我的应用由于超时和未知路径等明显原因而崩溃?
try{
JSONObject jsonObject = new JSONObject(response);
String success = jsonObject.getString("success");
String message = jsonObject.getString("message");
if (success.equals("1")) {
JSONObject user = jsonObject.getJSONObject("data");
} else if (success.equals("0")) {
Log.d("test", message);
}
Log.d("test", response);
}
catch (JSONException e){
e.printStackTrace();
}