原先的下载程序在2.3.3可以正常运行但是在android4.0运行时报出如上错误
经查证是因为下载的例程
class TxtDownloadListener implements OnClickListener{
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
String str = httpDownload.downText("http://192.168.1.102/androidServer/a.jsp");
System.out.println(str);
}
}
直接在UI主进程中运行,如文档中介绍
Class Overview
The exception that is thrown when an application attempts to perform a networking operation on its main thread.
This is only thrown for applications targeting the Honeycomb SDK or higher. Applications targeting earlier SDK versions are allowed to do networking on their main event loop threads, but it's heavily discouraged.
在3.0版本以上就会出这种异常
将下载文件的代码放到线程中去就不会报错
class TxtDownloadListener implements OnClickListener{
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
new Thread(txtrun).start();
}
}
Runnable txtrun = new Runnable() {
@Override
public void run() {
// TODO Auto-generated method stub
String str = httpDownload.downText("http://192.168.1.102/androidServer/a.jsp");
System.out.println(str);
}
};
我是用Thread实现的线程启动可以有别的方法
链接:http://www.vogella.de/articles/AndroidPerformance/article.html
本文探讨了在Android 4.0及以上版本中,应用直接在主线程进行网络操作时遇到的`NetworkOnMainThreadException`异常问题,并提供了解决方案,即通过创建线程来执行下载任务,避免了异常的产生。
440

被折叠的 条评论
为什么被折叠?



