我正在尝试从文件中读取,但我在检查时弄错了。我不明白为什么会发生这种情况,文件存在我有很多时间可以确定。
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
我也将它包含在 AndroidManifest.xml 文件中,所以这也不是问题。
String filePath = Environment.getExternalStorageDirectory() + "/folder/Save.spm";
File filecheck = new File(filePath);
if(filecheck.exists() == false)
{
return false;
}
FileInputStream file = new FileInputStream(filePath);
DataInputStream input = new DataInputStream(file);
为什么android声称该文件不存在?