0

当我使用 eclipse 在常规 .java 中测试代码时,下面的代码可以为我提供文本“brendan's android”,但是当我在 android 模拟器的主要活动中运行它时会抛出错误异常。

我尝试使用 HttpURLConnection 而不是 URLConnection 并没有解决问题。

    public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    try {
        String urlStr = "http://www.brendan-weinstein.com/android.html";
        URL url = new URL(urlStr);
        URLConnection conn = (URLConnection) url.openConnection();
        InputStreamReader inStream = new InputStreamReader(conn.getInputStream());
        BufferedReader rd = new BufferedReader(inStream);
        String testline = rd.readLine();
        Toast.makeText(GenForm.this, testline, Toast.LENGTH_SHORT).show();
        rd.close();
    }
    catch(IOException ex) {
        Toast.makeText(GenForm.this, "reader did not work", Toast.LENGTH_LONG).show();
    }
}
4

1 回答 1

2

你能粘贴异常吗?这是什么异常?

随机猜测:您是否在清单中添加了对 Internet 权限的需求?编辑:

<uses-permission android:name="android.permission.INTERNET"/> 
于 2010-12-18T13:56:49.453 回答