0

当我尝试运行此代码时,它会出现此错误android.os.NetworkOnMainThreadException这是完整的代码:

final EditText editText = (EditText) findViewById(R.id.ed);
    Button buttonX = (Button) findViewById(R.id.ok);
    buttonX.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            final String message = editText.getText().toString();
            new Thread() {
                public void run() {
                    Log_in.this.runOnUiThread(new Runnable() {
                        @Override 
                        public void run() {
                            try {
                                URL url = new URL(message);
                                HttpURLConnection.setFollowRedirects(false);
                                HttpURLConnection con = (HttpURLConnection) url.openConnection();
                                con.setRequestMethod("HEAD");
                                con.connect();
                                Log.d("URL Result", "con.getResponseCode() IS : " + con.getResponseCode());
                                if ((con.getResponseCode() >= 200) && (con.getResponseCode() <= 399)) {
                                    Log.d("URL Result", "Sucess");

                                    Toast.makeText(getBaseContext(), "GOOD!", Toast.LENGTH_SHORT).show();

                                    Intent intent = new Intent(Log_in.this, MainActivity.class);
                                    startActivity(intent);
                                } else
                                    Log.d("URL Result", "con.getResponseCode() IS : " + con.getResponseCode());
                            } catch (Exception e)

                            {
                                e.printStackTrace();
                                Log.d("URL Result", "fail");
                            }
                        }
                    });
                }
            }.start();
        }
    });
}

我想我应该使用AsyncTask,但我不知道如何在我当前的代码上使用它,有人知道我应该怎么做,或者我的代码搞砸了,我应该以某种方式改变它吗?

4

1 回答 1

2
new Thread() {
       public void run() {
             Log_in.this.runOnUiThread(new Runnable() {

您正在生成一个线程只是为了使其 run 方法在 UI 线程上运行。这就是您获得NetworkOnMainThreadException. 你必须使用

 Log_in.this.runOnUiThread(new Runnable() {

仅用于更改 UI 并显示您的 Toast

于 2015-09-11T13:06:39.137 回答