0

アプリの内部ストレージ スペース内のファイルに書き込むためのログ クラスがあります。ログ ファイルがサイズ制限を超えたとき。内容をクリアするために、現在の FileOutputStream を閉じて、書き込みモードで新しいストリームを作成して閉じています。これを達成するためのより良い方法はありますか:

public final void clearLog() throws IOException {
        synchronized (this) {
            FileOutputStream fos = null;
            try {
                // close the current log file stream
                mFileOutputStream.close();

                // create a stream in write mode
                fos = mContext.openFileOutput(
                        LOG_FILE_NAME, Context.MODE_PRIVATE);
                fos.close();

                // create a new log file in append mode
                createLogFile();
            } catch (IOException ex) {
                Log.e(THIS_FILE,
                        "Failed to clear log file:" + ex.getMessage());
            } finally {
                if (fos != null) {
                    fos.close();
                }
            }
        }
    }
4

3 に答える 3

2

ファイルを何もせずに上書きすることもできます。

更新

getFilesDir ()にはより良いオプションがあるようです この質問を見てください How to delete internal storage file in android?

于 2012-06-07T22:08:25.400 に答える
1

空のデータをファイルに書き込みます。

String string1 = "";
        FileOutputStream fos ;
        try {
            fos = new FileOutputStream("/sdcard/filename.txt", false);
            FileWriter fWriter;

            try {
                fWriter = new FileWriter(fos.getFD());

                fWriter.write(string1);
                fWriter.flush();
                fWriter.close();
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                fos.getFD().sync();
                fos.close();
            }
        } catch (Exception e) {
            e.printStackTrace();
        }

このコードでは:

fos = new FileOutputStream("/sdcard/filename.txt", false);

FALSE- 新しいコンテンツを書くため。If TRUE- 既存のファイルにテキストを追加します。

于 2014-03-13T07:54:11.133 に答える
0
public void writetofile(String text){ // text is a string to be saved    
   try {                               
        FileOutputStream fileout=openFileOutput("mytextfile.txt", false); //false will set the append mode to false         
        OutputStreamWriter outputWriter=new OutputStreamWriter(fileout);  
        outputWriter.write(text);  
        outputWriter.close();  
        readfromfile();  
        Toast.makeText(getApplicationContext(), "file saved successfully",  
                Toast.LENGTH_LONG).show();  
        }catch (Exception e) {  
            e.printStackTrace();  
    }  
}
于 2015-03-03T17:51:54.163 に答える