NetworkOnMainThreadException从Web上读取时

时间:2012-02-25 08:25:46

标签: android networkonmainthread

当我尝试从网站上读取单行文本时,我收到错误(NetworkOnMainThreadException)。我尝试了一些东西但到目前为止没有任何作用。所以这里是代码,如果有人可以帮助。在清单中我有互联网许可,所以不应该是问题。

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;

import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;

public class Weather extends Activity {

    Button button;
    TextView t;
    String result;

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState); 

        setContentView(R.layout.weather);

        t = (TextView)findViewById(R.id.textView1);

    }   

    public void myButtonClickHandler (View view) throws ClientProtocolException, IOException {
        result = getContentFromUrl("http://url.com");
        t.setText(result);
    }

    public static String getContentFromUrl(String url) throws ClientProtocolException, IOException {

        HttpClient httpClient = new DefaultHttpClient();
        HttpGet httpGet = new HttpGet(url);
        HttpResponse response;

        response = httpClient.execute(httpGet);
        HttpEntity entity = response.getEntity();

        if(entity != null) {

            InputStream inStream = entity.getContent();

            String result = Weather.convertStreamToString(inStream);
            inStream.close();

            return result;
        }

        return null;

    }

    private static String convertStreamToString(InputStream is) {
        BufferedReader reader = new BufferedReader(new InputStreamReader(is));
        StringBuilder sb = new StringBuilder();

        String line = null;

        try {
            while ((line = reader.readLine()) != null) {
                sb.append(line + "\n");
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                is.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        return sb.toString();
    }
}

3 个答案:

答案 0 :(得分:7)

不要在主线程中使用网络活动。仅针对Honeycomb SDK或更高版本的应用程序抛出此异常。在单独的线程中执行所有与网络相关的任务(使用handler looper或runOnUiThread)。你的问题会得到解决。

答案 1 :(得分:4)

您可以将其移至后台线程,或者如果您只想消除此错误,只需在onCreate()中添加:

 StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();

    StrictMode.setThreadPolicy(policy); 

不要忘记在清单中添加互联网权限:

<uses-permission android:name="android.permission.INTERNET"/>

答案 2 :(得分:1)

您可能希望使用AsyncTask http://developer.android.com/reference/android/os/AsyncTask.html

进行所有下载

或者如果你的api 11+是AsyncTaskLoader,http://developer.android.com/reference/android/content/AsyncTaskLoader.html