如何将换行符作为字符串写入文件java。 例如,我想将字符串写入文件“hello \ nworld” 因为它是一个文件。
谢谢你, 蛙。
答案 0 :(得分:6)
System.out.println("hello\\nworld");
System.out.println("hello\nworld");
答案 1 :(得分:4)
请注意,您应该使用System.getProperty(“line.separator”)而不是\ n,因为此字符并不总是系统的行分隔符。
答案 2 :(得分:0)
您还可以使用以下代码检索所有属性的列表:
System.getProperties().list(System.out);