如何获得独立于平台的换行符?
如何在 Java 中获得独立于平台的换行符? 我不能在任何地方使用 "\n"
。
How do I get a platform-independent newline in Java? I can’t use "\n"
everywhere.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
Java 7 现在有一个
System.lineSeparator()< /code>
方法。
Java 7 now has a
System.lineSeparator()
method.您可以使用
来获取行分隔符
You can use
to get the line separator
除了 line.separator 属性之外,如果您使用 java 1.5 或更高版本以及 String.format(或其他格式化方法),您还可以使用
%n
如参见 Java 1.8 API for Formatter 了解更多详情。
In addition to the line.separator property, if you are using java 1.5 or later and the String.format (or other formatting methods) you can use
%n
as inSee the Java 1.8 API for Formatter for more details.
如果您尝试向文件写入换行符,则可以简单地使用 BufferedWriter 的 newLine() 方法。
If you're trying to write a newline to a file, you could simply use BufferedWriter's newLine() method.
commons-lang 库有一个可用的常量字段,称为 SystemUtils.LINE_SEPARATOR
The commons-lang library has a constant field available called SystemUtils.LINE_SEPARATOR
无论平台如何,上面的代码片段都会有两个由新行分隔的字符串。
The above snippet will have two strings separated by a new line irrespective of platforms.
从 JDK 1.1 开始,BufferedWriter 类具有“newLine()”方法,用于写入与平台相关的换行符。 它还提供了 StringWriter 类,使得提取新行成为可能:
Since JDK 1.1, the BufferedWriter class had the "newLine()" method which wrote the platform-dependent new line. It also provided the StringWriter class, making it possible to extract the new line:
避免使用 String + String 等附加字符串,而是使用 StringBuilder。
Avoid appending strings using String + String etc, use StringBuilder instead.