在使用android内置的模拟器访问本地机器上的资源时会报该错误
原因:模拟器把自己当成主机了,即,将127.0.0.1指向了自己
解决办法:android有个内置的ip:10.0.22,使用该ip来访问本地机器
既:
将原url:http://localhost:8080/androidLoadTest/web/test.txt
改为:http://10.0.2.2:8080/androidLoadTest/web/test.txt
posted on 2011-03-13 20:36
Ying-er 阅读(614)
评论(0) 编辑 收藏 所属分类:
Android