Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试从链接下载数据库,但是当我创建一个FileOutputstream对象时,它会提示一个FileNotFoundException,告诉我访问被拒绝。我调查了一下,发现它可能是 sdcard,当我过去 Environment.getExternalStorageState() 查看发生了什么时,它告诉我 sd 卡已被移除。我检查并看到 sd 已正确插入虚拟设备,那么我该如何解决这个问题?
FileOutputstream
FileNotFoundException
Environment.getExternalStorageState()
提前致谢!
编辑: 我已经有权在清单上写在外部设备上。
你有
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
在你的清单中?