所以,我有以下代码写入文件:
Formatter output = ....... // Creating the formatter works, writes to appropriate file.
output.format("%d\n", records.length);
for(GradeRecord gR:records)
{
output.format(gR.toString() + "\n");
}
唯一的问题是,输出没有换行符。
如果我用“\ _”替换“\ n”,则无效。
......我不知道为什么这不起作用。输出已创建并正确写入。 (我看到文件已创建,所有内容都写在其中,换行符除外。)
答案 0 :(得分:8)
您可以使用格式“%n”使用格式化程序输出特定于平台的换行符。
答案 1 :(得分:6)
您想要使用正确的换行符串,无论它在哪个平台上运行。您可以使用
动态执行此操作 String newline = System.getProperty("line.separator");
所以你以后可以做
output.format(gR.toString() + newline);
答案 2 :(得分:0)
您可以尝试使用\\n
代替\n