1

我想知道是否有一种方法可以防止试图在传递的 uri 字符串上建立连接的后台线程由于IOExceptionor而导致整个应用程序崩溃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 线程上发布一些有用的消息并防止应用程序崩溃。

谢谢你。

4

3 回答 3

1

然后放入catch部分

catch (Exception e) {
     if(e.getMessage().toString().equalsIgnoreCase("write your exception from logcat"))
        {
         //show your error in a toast or a dialog
         Toast.makeText(this," your pertinent error message ", Toast.LENGTH_LONG);
                }
            }
于 2013-09-28T19:16:54.880 回答
1

你错误地使用了 Thread.start() 而不是 Thread.run():

          new Thread(new MyDownloaderClass(url_str)).start();

您的代码仍然在原始线程上运行,因此异常会导致崩溃。

于 2014-01-06T13:32:18.663 回答
1

我建议您在 AsyncTask 中执行所有网络操作。

在 AsyncTask 方法的 doinBackground() 中,使用 try/catch 执行所有网络操作。如下处理异常。

//Define "Exception error = null;" in your AsyncTask class.
catch(Exception ex) {
    Log.e(TAG,e.getClass()+": "+ex.getMessage());
    error = ex;
}

在 onPostExecute() 方法中检查

if (error ! = null) {
    //Toast msg . // You should not call a Toast msg in your doinBackground method.
}
于 2013-09-28T19:51:36.843 回答