为了账号安全,请及时绑定邮箱和手机立即绑定

应用崩溃,但未捕获任何异常

应用崩溃,但未捕获任何异常

慕姐8265434 2022-09-01 16:34:03
因此,我正在Udemy的教程“完整的Android N开发人员课程”中学习,并试图制作关于天气应用程序的第86讲。我从这里使用API https://openweathermap.org/current#cityid 并使用JSON来获取所需的数据。当我输入正确的城市名称时,该应用程序工作正常,但是当输入错误或清空时,应用程序崩溃而没有捕获任何异常。我不知道为什么它会崩溃,不知道在哪里看。所以我给你我写的所有代码。我试图在这里和那里实现if语句,试图找到它,但没有任何运气。我想知道问题出在哪里以及如何解决它,以便应用程序不再崩溃。提前致谢。public class MainActivity extends AppCompatActivity {    EditText editText;    String city = "";    TextView textView;    public void getWeather (View view)  {        try {            city = URLEncoder.encode(editText.getText().toString(), "UTF-8");            if (editText.getText().toString() == "") {                Toast.makeText(MainActivity.this, "Could not find weather", Toast.LENGTH_SHORT).show();                textView.setText("Please enter a city.");            } else  {                DownloadTask task = new DownloadTask();                task.execute("http://api.openweathermap.org/data/2.5/weather?q=" + city + "&appid=c6ef169a79d84674ef7e1414301eb5c4");            }            InputMethodManager mgr = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);            mgr.hideSoftInputFromWindow(editText.getWindowToken(), 0);        } catch (UnsupportedEncodingException e1) {            Toast.makeText(MainActivity.this, "UnsupportedEncodingException", Toast.LENGTH_SHORT).show();        }catch (Exception e) {            Toast.makeText(MainActivity.this, "General exception (getWeather)", Toast.LENGTH_SHORT).show();        }    }    public class DownloadTask extends AsyncTask<String, Void, String> {        @Override        protected String doInBackground(String... urls) {            String result = "";            URL url;            HttpURLConnection urlConnection = null;            try {                url = new URL(urls[0]);                urlConnection = (HttpURLConnection)url.openConnection();                InputStream in = null;                in = urlConnection.getInputStream();                InputStreamReader reader = new InputStreamReader(in);               }
查看完整描述

1 回答

?
白衣染霜花

TA贡献1796条经验 获得超10个赞

这是因为您正在尝试使用以下行在异步任务的 doInBackground(Params...) 方法内使用后台线程更改 UI:

try {
     ...    return result;
} catch (MalformedURLException e1) {
    Toast.makeText(MainActivity.this, "MalformedURLException", Toast.LENGTH_SHORT).show();
} catch (IOException e2) {
Toast.makeText(MainActivity.this, "IOException", Toast.LENGTH_SHORT).show();
} catch (Exception e) {
    Toast.makeText(MainActivity.this, "General exception (doInBackground)", Toast.LENGTH_SHORT).show();
}

你不应该在doInBackground(Params...)内调用Toast。在 onPostExecute(Result) 中执行此操作。

您可以通过忽略错误或在doInBackground中返回特定文本来避免这种情况。像这样:

public class DownloadTask extends AsyncTask<String, Void, String> {


    @Override

    protected String doInBackground(String... urls) {


        String result = "";

        ...


        try {

            ...

            return result;

        } catch (MalformedURLException e1) {

            result= "MalformedURLException";

        } catch (IOException e2) {

            result= "IOException";

        } catch (Exception e) {

            // do nothing and returning empty

            result= "Exception";

        }

        return result;

    }


    @Override

    protected void onPostExecute(String result) {

        // check if there is an error

        String errorMessage = "";

        switch(result) {

          case "MalformedURLException":

            errorMessage = "MalformedURLException";

            break;

          case ""IOException":

            errorMessage = "IOException";

            break;

          case "Exception":

            errorMessage = "Exception";

            break;

        }


         // there is an error, show a message.

        if(!errorMessage.isEmpty()) {

            Toast.makeText(MainActivity.this, "Could not find weather: " + errorMessage, Toast.LENGTH_SHORT).show();

            return; // stop the process.

        }


         // do something when no error found.


    }

}


查看完整回答
反对 回复 2022-09-01
  • 1 回答
  • 0 关注
  • 85 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信