我想知道是否有一种方法可以防止试图在传递的 uri 字符串上建立连接的后台线程由于IOException
or而导致整个应用程序崩溃MalformedURLException
。虽然我捕获了所有抛出的异常并将消息打印到 logcat,但我不希望应用程序与 msg: 一起崩溃Unfortunately, MyApp has stopped
。我希望应用程序通过在主/UI 线程上发布相关的错误消息来优雅地退出。
比如说:
public void onClick(View v){
new Thread(new MyDownloaderClass(url_str)).start();
}
private class MyDownloaderClass implements Runnable{
private String url_str;
public MyDownloaderClass(String arg){url_str=arg;}
public void run(){
URL url=null;
int respCode=0;
try{
url=new URL(str);
HttpURLConnection connection=(HttpURLConnection)url.openConnection();
connection.setRequestMethod("HEAD");
connection.connect();
respCode=connection.getResponseCode();
}catch(MalformedURLException e){
Log.e(TAG,e.getClass()+": "+e.getMessage());
}catch(IOException e){
Log.e(TAG,e.getClass()+": "+e.getMessage());
}
}
}
在这种情况下,如果输入的字符串不是可行的 url 或无法建立连接,我的应用程序就会崩溃。但我希望能够在 UI 线程上发布一些有用的消息并防止应用程序崩溃。
谢谢你。