我正在做一个简单的应用程序,用java加载和保存文件。我正试图将其移植到Android上,但我无法让它看到文件。
我当前使用的文件路径是
private static final String SAVE_FILE_PATH = "data/save";
下面是从文件中加载数据的函数:
public void loadData() throws FileNotFoundException {
File file = new File(SAVE_FILE_PATH);
Scanner scanner;
if (file.exists()) {
scanner = new Scanner(new FileInputStream(file));
try {
while (scanner.hasNextLine()) {
allPlayers.add(new Player(scanner.nextLine()));
}
} finally {
scanner.close();
}
}
else {
System.out.println("No file found");
}
} finally {
scanner.close();
}
}
}
当getExternalStorageDirectory()
为您提供到SD卡的路径时,请考虑使用Activity.getExternalFilesDir()
,它将返回(并在必要时创建)一个名义上对您的应用程序私有的目录。它还有一个优点,如果应用程序被卸载,它将自动删除。这在API 8中是新的,所以如果你支持的是旧设备,你可能不想使用它。
否则,您将不得不遵循ρяσѕρєя K的建议。不要忘记创建您想要使用的存储目录。我的代码通常是这样的:
/**
* Utility: Return the storage directory. Create it if necessary.
*/
public static File dataDir()
{
File sdcard = Environment.getExternalStorageDirectory();
if( sdcard == null || !sdcard.isDirectory() ) {
// TODO: warning popup
Log.w(TAG, "Storage card not found " + sdcard);
return null;
}
File datadir = new File(sdcard, "MyApplication");
if( !confirmDir(datadir) ) {
// TODO: warning popup
Log.w(TAG, "Unable to create " + datadir);
return null;
}
return datadir;
}
/**
* Create dir if necessary, return true on success
*/
public static final boolean confirmDir(File dir) {
if( dir.isDirectory() ) return true;
if( dir.exists() ) return false;
return dir.mkdirs();
}
现在用这个来指定你的保存文件:
File file = new File(dataDir(), "save");
Scanner scanner;
if (file.exists()) {
// etc.
}