Java FileWriter 如何写入下一行

2022-09-03 08:20:26

我使用下面的代码将记录写入文件。记录可以写在文件中,但每次我调用此方法示例时都会追加在一行中:

你好世界你好世界你好世界你好世界你好世界

如何修改代码以使输出如下所示,以便在阅读文本时,我可以使用line.hasNextLine()进行检查?

你好世界
你好世界
你好世界
你好世界 你好世界

        // Create file
        FileWriter fstream = new FileWriter(fileName, true);
        BufferedWriter out = new BufferedWriter(fstream);
        out.write(c.toString());
        //Close the output stream
        out.close();

        // Code I used to read record I am using | as a seperator name and id
        String fileName = folderPath + "listCatalogue.txt";
        String line = "";
        Scanner scanner;
        String name, id;
        scanner = new Scanner(fileName);
        System.out.println(scanner.hasNextLine());
        while (scanner.hasNextLine()) {
            line = scanner.nextLine();
            System.out.println(line);
            StringTokenizer st = new StringTokenizer(line, "|");
            name = st.nextToken();
            id = st.nextToken();
            catalogues.add(new Catalogue(name, id));
        }

答案 1

我不确定我是否理解正确,但这是你的意思吗?

out.write("this is line 1");
out.newLine();
out.write("this is line 2");
out.newLine();
...

答案 2
out.write(c.toString());
out.newLine();

这是一个简单的解决方案,我希望它有效

编辑:我使用的是“\n”,这显然不是推荐的方法,修改了答案。