我正在尝试从文件中读取,但我在支票上弄错了。我不明白为什么这很开心,文件存在我有多个时间只是为了确定。
<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声称该文件不存在?
答案 0 :(得分:1)
您是如何检查文件是否存在的?您是否尝试过使用ADB pull命令从模拟器中检索文件(如果您使用的话)?
adb pull /path/to/file
获取filecheck的绝对路径并尝试。您也可能将应用程序缓存目录与外部存储器混淆。或者可能有多个外部存储器,而您正在查看错误的存储器。