我使用以下代码从使用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();
}
}