【Android】Caused by: libcore.io.ErrnoException: open failed: ENOENT (No such file or directory)

【Android】Caused by: libcore.io.ErrnoException: open failed: ENOENT (No such file or directory)


这个有两种简单方法解决:如果你非要在 安卓的 activity主线程进行网络调用(这可不好哦,网络请求很慢很慢的,必然造成IO问题他)


第一种:  http://blog.csdn.net/zhixinhuacom/article/details/15815577 (感谢博主)





第二种方法:

super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);    后面加入:

         StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder().detectDiskReads().detectDiskWrites().detectNetwork().penaltyLog().build());
StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder().detectLeakedSqlLiteObjects().detectLeakedClosableObjects().penaltyLog().penaltyDeath().build());    





其他的方法,当然是采用Handler和Thread的方法啦,

此外,网上提供的很多异步请求网络,也很可能出问题,因为他们的代码老早老早写的,而你sdk版本太高了,太容易出问题了。我的方法是:第一种方法,很有效哦!!!


你可能感兴趣的:(进攻Android_第二阶段)