我正在尝试删除文件,但它不起作用。我不知道为什么。这是我的函数调用。 String ola
和ola2
都有mozi
,但您可以看到我在ola
行执行后删除了该文件。我希望ola2
能够给我null
。
OfflineDataFiles dataFiles = new OfflineDataFiles();
dataFiles.writeToFile("mozi", getApplicationContext(), 1);
String ola =dataFiles.readFromFile(getApplicationContext(), 1);
boolean answer=dataFiles.DeleteFile(1);
String ola2 =dataFiles.readFromFile(getApplicationContext(), 1);
删除文件:
public boolean DeleteFile(int filetype)
{
File f = new File("myfile.txt");
boolean ans= f.delete();
return ans;
}
有什么问题?
答案 0 :(得分:1)
您的myfile.txt
没有存储路径
应该是
File sdCard = Environment.getExternalStorageDirectory();
String path = sdCard.getAbsolutePath() + "/yourfolder/" ;
File f = new File(path +"myfile.txt");
f.delete();
答案 1 :(得分:1)
删除宽度正确的方法:
File file = new File(selectedFilePath);
boolean deleted = file.delete();
selectedFilePath例如:/sdcard/download/curse.txt
最好的。
答案 2 :(得分:0)
public boolean DeleteFile(int filetype) {
File f = new File("myfile.txt");
FileChannel outChan = new FileOutputStream(f, true).getChannel();
outChan.truncate(0);
outChan.close();
}
来自:this 创建对myfile.txt的引用,而不是将其截断为0字节。您将能够访问它,但可能其内容已消失。