0

ファイルを削除しようとしていますが、うまくいきません。どうしてか分かりません。これが私の関数呼び出しです。行が実行された後にファイルを削除したことがわかりますがString olaola2どちらも持っています。私は私に与えることを期待しています。moziolaola2null

    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;
}

どうしたの?

4

3 に答える 3

1

myfile.txt保存されているパスがありません

それは次のようなものでなければなりません

File sdCard = Environment.getExternalStorageDirectory();   
String path = sdCard.getAbsolutePath() + "/yourfolder/" ;
File f = new File(path +"myfile.txt");
f.delete();
于 2013-06-23T17:14:48.030 に答える
1

正しい方法で幅を削除します。

File file = new File(selectedFilePath);
                boolean deleted = file.delete();

例: selectedFilePath: /sdcard/download/curse.txt

最善。

于 2013-06-23T17:16:03.017 に答える
-1

FileChannel.truncate

public boolean DeleteFile(int filetype) {
    File f = new File("myfile.txt");
    FileChannel outChan = new FileOutputStream(f, true).getChannel();
    outChan.truncate(0);
    outChan.close();
}

From: this myfile.txt への参照を作成し、それを 0 バイトに切り捨てます。アクセスすることはできますが、おそらくその内容は失われています。

于 2013-06-23T17:48:25.407 に答える