我试图获取网站的源代码并将其存储在Android中的字符串中,以下代码在java中运行良好,不应该在Android中使用相同的代码。 。我查了但字符串是空的
super.onCreate(savedInstanceState);
URL url=null;
try {
url = new URL("http://iiitd.ac.in/admission");
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
try{
InputStream is = (InputStream) url.getContent();
BufferedReader br = new BufferedReader(new InputStreamReader(is));
String line = null;
StringBuffer sb = new StringBuffer();
while((line = br.readLine()) != null){
sb.append(line);
}
String htmlContent = sb.toString();
TextView textView = new TextView(this);
textView.setText(htmlContent);
setContentView(textView);
}
catch (IOException e) {
e.printStackTrace();
}
textView是空的 没有textView代码的问题,它会正常工作