我的应用程序在尝试获取远程 txt 文件时崩溃。即使只是尝试解析一个 url 它也会崩溃。已设置互联网权限,并且设备/虚拟机已连接到互联网。
日志猫:
代码片段:
try {
// the following line is enough to crash the app
URL url = new URL("http://www.i.am/not/going/to/show/you/this.txt");
BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
String line = null;
while ((line = in.readLine()) != null) {
//get lines
}
in.close();
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
我不明白我做错了什么。提前感谢您的帮助。
//编辑:添加日志猫片段