为什么我不添加文件而不是覆盖?

我对android开发很新。我创建了一个用户将填写的表单,并且我正在尝试编写一个函数,该表单将以制表符分隔的字符串将该数据保存到外部文件中,以后我将能够提取或发送电子邮件。但是,每当我向文件写入一个新字符串时,它都会覆盖已存在的字符串。救命! 这是为文件添加行的代码。
if(hasExternalStoragePrivateFile()){
    File file = new File(getExternalFilesDir(null), fileNameSetting.getString(OUTPUT_FILE_NAME, ""));

    String inputLine = generateLine();

    try{
        OutputStream os = new FileOutputStream(file);
        PrintWriter out = new PrintWriter(os);
        out.println(inputLine);
        out.flush();
        out.close();
        }catch (java.io.IOException e) {

    }
    Log.v(DEBUG_TAG, "Line Added");
}
questionScreen1.this.finish();
    
已邀请:
我没有使用Java,但我相信你需要将
true
传递给
FileOutputStream
构造函数,以便打开文件进行追加。
OutputStream os = new FileOutputStream(file, true);
    

要回复问题请先登录注册