我希望我的Android应用程序通过使用(POST)webservice将堆栈跟踪发送到我的后端应用程序来处理未捕获的异常。为此,我在父活动中设置了UncaughtExceptionHandler:
Thread.setDefaultUncaughtExceptionHandler(new CustomExceptionHandler(this));
在我的CustomExceptionHandler中,我重写了uncaughtException方法:
@Override
public void uncaughtException(Thread thread, Throwable ex) {
HttpURLConnection connection = null;
try {
URL url = new URL("http://mywebserviceurl.com?message=justatest");
connection = (HttpURLConnection) url.openConnection();
connection.setReadTimeout(5000);
connection.setConnectTimeout(5000);
connection.setRequestMethod("POST");
connection.setDoOutput(true);
connection.connect();
} catch (Exception e) {
//Handle crash
} finally {
if (connection != null) {
connection.disconnect();
}
}
}
为了测试这个,我强迫我的应用程序崩溃:
new Handler().postDelayed(new Runnable(){
@Override
public void run() {
throw new RuntimeException("");
}
}, 2500);
但未联系我的网络服务。当我在try子句的第二行放置一个断点时,似乎调试器非常短暂地到达该行,然后程序和调试器就会退出。我也尝试创建一个新线程来处理webservice调用,我尝试使用AsyncTasks,但行为保持不变:我的Web服务从未联系过。出了什么问题?
感谢。