在模拟器(Android 4.0.3 / API 15)上运行我的代码时出现此异常。打开流时,它会抛出异常。错误消息是null
。
try {
String adress = "xxx";
URL url = new URL(adress);
InputSource source = new InputSource(url.openStream());
} catch (Exception e) {
(new TextView).setText("Error: "+e.getMessage());
}
URL 仍在使用模拟器(在浏览器中)。
我已经清理了项目。
也允许互联网连接:
<uses-permission android:name="android.permission.INTERNET" />
例外 :android.os.NetworkOnMainThreadException