我遇到了问题。我花了一段时间来弄清楚那个凌空甚至更好,当它试图发送没有连接的数据(2G / 3G / LTE,wifi)时,完整的应用程序崩溃了。如果智能手机处于飞行模式甚至没有互联网连接,就会发生这种情况。
这是我的源代码:
public class AppController extends Application {
public static final String TAG = AppController.class
.getSimpleName();
private RequestQueue mRequestQueue;
private ImageLoader mImageLoader;
private static AppController mInstance;
@Override
public void onCreate() {
super.onCreate();
mInstance = this;
}
public static synchronized AppController getInstance() {
return mInstance;
}
public RequestQueue getRequestQueue() {
if (mRequestQueue == null) {
mRequestQueue = Volley.newRequestQueue(getApplicationContext());
}
return mRequestQueue;
}
public ImageLoader getImageLoader() {
getRequestQueue();
if (mImageLoader == null) {
mImageLoader = new ImageLoader(this.mRequestQueue,
new LruBitmapCache());
}
return this.mImageLoader;
}
public <T> void addToRequestQueue(Request<T> req, String tag) {
// set the default tag if tag is empty
req.setTag(TextUtils.isEmpty(tag) ? TAG : tag);
getRequestQueue().add(req);
}
public <T> void addToRequestQueue(Request<T> req) {
req.setTag(TAG);
getRequestQueue().add(req);
}
public void cancelPendingRequests(Object tag) {
if (mRequestQueue != null) {
mRequestQueue.cancelAll(tag);
}
}
public void addToRequestQueue(JsonObjectRequest jsonObjReq,
String tag_json_obj) {
// TODO Auto-generated method stub
getRequestQueue().add(jsonObjReq);
}
}
这就是我的应用程序中的请求。我将发送一个JSONObject。
public static void sendSMS(JSONObject obj)
{
// Tag used to cancel the request
String tag_json_obj = "json_obj_req";
String url = "http:/<IP>/<FILE>.php";
JsonObjectRequest ObjReq = new JsonObjectRequest(Method.POST, url, obj,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
Log.d(TAG, response.toString());
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
VolleyLog.d(TAG, "Error: " + error.getMessage());
// hide the progress dialog
}
});
// Adding request to request queue
AppController.getInstance().addToRequestQueue(ObjReq, tag_json_obj);
}
如果智能手机连接互联网(2G / 3G / LTE,wifi),一切正常。如果它处于飞行模式,我会收到此错误:
有人可以帮我处理吗?我甚至用“尝试”和“捕获”块来尝试它,但这对我不起作用。凌空可以管理这个而不会崩溃应用程序吗?提前致谢! :)
答案 0 :(得分:0)
我认为很可能因为这条线而投掷NPE:
VolleyLog.d(TAG, "Error: " + error.getMessage());
“error”对象可能为null。