Java Formatter 不允许换行符?

发布于 2024-10-28 12:11:25 字数 368 浏览 2 评论 0原文

因此,我将以下代码写入文件:

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");
}

唯一的问题是,输出没有换行符。

如果我用“\r”替换“\n”也不起作用。

...我不知道为什么这不起作用。输出已创建并正确写入。 (我看到创建的文件,除了换行符之外,所有内容都写在其中。)

So, I've got the following code to write to a file:

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");
}

Only problem is, the output doesn't have newline characters.

Doesn't work if I replace "\n" with "\r", either.

...I don't know why this doesn't work. Output is created and writes correctly. (I see the file created and everything is written in it, except for newline characters.)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

清秋悲枫 2024-11-04 12:11:25

您可以使用格式“%n”通过格式化程序输出特定于平台的换行符。

you can use the format "%n" to output the platform specific newline using a formatter.

茶花眉 2024-11-04 12:11:25

无论它在哪个平台上运行,您都希望使用正确的换行符字符串。 动态执行此操作,

您可以使用String newline = System.getProperty("line.separator");

因此您可以稍后执行

output.format(gR.toString() + newline);代码>

You want to use the correct line break string regardless of what platform it's being run on. You can do this dynamically using

String newline = System.getProperty("line.separator");

So you can later do

output.format(gR.toString() + newline);

沉溺在你眼里的海 2024-11-04 12:11:25

您可以尝试使用 \\n 而不是 \n

You can try using \\n instead of \n

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文