我正在使用一种方法来获取网站html源代码。 这个方法在一个简单的java项目中工作正常,但在android项目中“indexoutofboundsexception index 0 size 0”exeption accurs。
方法和日志包括:
private String getUrlSource(String url_str) throws Exception {
String htmlText="";
BufferedReader in = null;
try {
URL url = new URL(url_str);
URLConnection spoof = url.openConnection();
spoof.setRequestProperty( "User-Agent", "Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0; H010818)" );
in = new BufferedReader(new InputStreamReader(spoof.getInputStream()));
String inputLine;
while ((inputLine = in.readLine()) != null)
htmlText=htmlText + inputLine + "\n";
} catch (Exception e) {
e.printStackTrace();
} finally {
if (in != null)
in.close();
}
Log.d("getURL", "done");
return htmlText;
}
Exeption就在这一行:
in = new BufferedReader(new InputStreamReader(spoof.getInputStream()));
感谢您的帮助
答案 0 :(得分:0)
如果问题仍然存在,我建议使用Vector对象作为第二个参数来设置属性。从JSP检索Vector并从Vector对象中提取数据。