0

我使用以下代码从使用 textview 的网站逐行读取。但问题是 textview 什么也不显示。

我想知道我的错误在哪里,或者如何更正我的代码以从网站读取数据。

注意:我使用模拟器。

JAVA代码:

try {
          URL url = new URL("http://www.google.com");
          HttpsURLConnection con = (HttpsURLConnection) url.openConnection();
          con.setDoOutput(true);
          con.connect();
          //readStream(con.getInputStream());
          reader = new BufferedReader(new InputStreamReader (con.getInputStream()));
          String line="";
        while ( (line=reader.readLine()) != null)
            tv00.setText(line);
        } catch (Exception e) {
          e.printStackTrace();
    }

}
4

0 回答 0