0

我正在使用以下代码将一些数据存储在文件中。(mydata 是用户输入的数据(双列表), dates_Strings 是我存储日期的字符串列表)

public void savefunc(){

        SimpleDateFormat thedate = new SimpleDateFormat("dd/MM/yyyy",Locale.US); 
        Date d=new Date();  

        String formattedDate=thedate.format(d);
        Log.d("tag","format"+formattedDate);
        dates_Strings.add(formattedDate);



            double thedata=Double.parseDouble(value.getText().toString().trim()); 
            mydata.add(thedata);


      File sdCard = Environment.getExternalStorageDirectory();
        File directory = new File (sdCard, "MyFiles");
        directory.mkdirs();            
        File file = new File(directory, filename);

        FileOutputStream fos;


        try {
           fos = new FileOutputStream(file);

              BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(fos));
              for (int i=0;i<mydata.size();i++){
                    bw.write(mydata.get(i)+","+dates_Strings.get(i)+"\n");
              }
              value.setText("");
              bw.flush();
              bw.close();

            } catch (IOException e2) {
               e2.printStackTrace();
                }
    }

问题是,如果我在 06/05/13 输入一些数据,然后在 07/05/13 输入一些数据,该文件只包含最后一个日期的最后一个数据。我想保留所有数据。

4

2 回答 2

0

用于fos = new FileOutputStream(file, true);将数据附加到文件而不是覆盖它。

文件输出流文档

于 2013-05-06T21:07:46.180 回答
0

以追加模式打开文件输出流

 fos = new FileOutputStream(file, true);
于 2013-05-06T21:09:11.263 回答