File() 构造函数中是否需要 .txt 扩展名?
Is .txt extension necessary in File() constructor?
就像我附加的方法一样,我已经使用了 practiceData.txt 我在文件构造函数中仅使用 practiceData 时得到了相同的结果,所以可以使用不带任何扩展名的文件还是 txt 更好?
private void saveData(String data) {
File file = new File(this.getFilesDir(), "practiceData.txt");
FileOutputStream fileOutputStream = null;
try {
fileOutputStream = new FileOutputStream(file);
fileOutputStream.write(data.getBytes());
saveStatus = "Data was successfully saved.";
} catch (java.io.IOException e) {
e.printStackTrace();
saveStatus = "Error occurred: " + e.toString();
} finally {
if (fileOutputStream != null) {
try {
fileOutputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}
使用什么文件扩展名并不重要,它只是告诉 OS 如何打开文件。所以是的,你可以不使用扩展名,它也能正常工作。
如果您打算通过其他应用程序手动打开文件,使用标准扩展名可能会有所帮助。
就像我附加的方法一样,我已经使用了 practiceData.txt 我在文件构造函数中仅使用 practiceData 时得到了相同的结果,所以可以使用不带任何扩展名的文件还是 txt 更好?
private void saveData(String data) {
File file = new File(this.getFilesDir(), "practiceData.txt");
FileOutputStream fileOutputStream = null;
try {
fileOutputStream = new FileOutputStream(file);
fileOutputStream.write(data.getBytes());
saveStatus = "Data was successfully saved.";
} catch (java.io.IOException e) {
e.printStackTrace();
saveStatus = "Error occurred: " + e.toString();
} finally {
if (fileOutputStream != null) {
try {
fileOutputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}
使用什么文件扩展名并不重要,它只是告诉 OS 如何打开文件。所以是的,你可以不使用扩展名,它也能正常工作。
如果您打算通过其他应用程序手动打开文件,使用标准扩展名可能会有所帮助。