2

所以标题几乎总结了我的问题,但就代码而言,我不确定我做错了什么。

这是我写入文件的片段:

                try {

                    FileOutputStream fos = openFileOutput(FILENAME, Context.MODE_PRIVATE);
                    OutputStreamWriter osw = new OutputStreamWriter(fos);

                    osw.append(assignmentTitle + "\n" + assignmentDate + "\n");
                    osw.flush();
                    osw.close();

                } catch (FileNotFoundException e) {
                    //catch errors opening file
                    e.printStackTrace();
                } catch (IOException e) {
                    e.printStackTrace();
                }

编辑:这是我每次调用活动时从文件中读取的位置

private void readDataFromFile() {
        try {
            //Opens a file based on the file name stored in FILENAME.
            FileInputStream myIn = openFileInput(FILENAME);

            //Initializes readers to read the file.
            InputStreamReader inputReader = new InputStreamReader(myIn);
            BufferedReader BR = new BufferedReader(inputReader);

            //Holds a line from the text file.
            String line;

            //currentAssignment to add to the list
            Assignment currentAssignment = new Assignment();

                while ((line = BR.readLine()) != null) {
                    switch (index) {
                    case 0:
                        //Toast.makeText(this, line, Toast.LENGTH_LONG).show();
                        currentAssignment.setTitle(line);
                        index++;
                        break;
                    case 1:
                        //Toast.makeText(this, Integer.toString(assignmentListIndex), Toast.LENGTH_LONG).show();
                        currentAssignment.setDate_due(line);
                        Statics.assignmentList.add(assignmentListIndex, currentAssignment);
                        index = 0;
                        assignmentListIndex++;
                        currentAssignment = new Assignment();
                        break;
                    default:
                        Toast.makeText(this, "error has occured", Toast.LENGTH_SHORT).show();
                        break;
                    }
                }
                BR.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
    }

当用户单击创建新分配时,这是一个功能。当他们单击作业上的保存按钮时,它应该将该作业保存到文件中,然后我稍后阅读它并将其显示在 listView 中。它所做的是在 listView 中显示第一项,当我创建新作业时,它会覆盖保存文件中的先前文本并在 listView 中替换它。如果你们需要我发布更多代码,请告诉我。我很困惑为什么这不起作用:(

4

2 回答 2

10

而不是Context.MODE_PRIVATE,使用Context.MODE_APPEND. 此模式附加到现有文件而不是删除它。(有关文档中的openFileOutput更多详细信息。)

于 2012-09-09T03:00:58.603 回答
0

而不是使用OutputStreamWriterClass 我建议你使用BufferedWriterClass 如下,

private File myFile = null; 
private BufferedWriter buff = null;

myFile = new File ( "abc.txt" );

buff = new BufferedWriter ( new FileWriter ( myFile,true ) );

buff.append ( assignmentTitle );
buff.newLine ( );
buff.append ( assignmentDate ); 
buff.newLine ( );
buff.close();
myFile.close();
于 2012-09-09T03:19:11.203 回答