Caused by: android.system.ErrnoException: open failed: ENOENT (No such file or directory)
这个错误在高版本的系统常见,为了更好的用户体验,在低版本的系统能正常运行,在高版本(比如7.0)很容易出问题。
原因:
在主线程中进行了网络操作。
解决:
检查代码哪里使用了网络操作,开启子线程。
本文共 243 字,大约阅读时间需要 1 分钟。
Caused by: android.system.ErrnoException: open failed: ENOENT (No such file or directory)
这个错误在高版本的系统常见,为了更好的用户体验,在低版本的系统能正常运行,在高版本(比如7.0)很容易出问题。
原因:
在主线程中进行了网络操作。
解决:
检查代码哪里使用了网络操作,开启子线程。
转载于:https://www.cnblogs.com/a1070022846/p/7580685.html