我有一个从TextArea获得的字符串。该字符串包括用户输入换行符。我想将整个字符串(包括那些换行符)写入文件。
这就是我现在所拥有的:
FileWriter fw = new FileWriter(nm + ".txt");
PrintWriter pw = new PrintWriter(fw);
pw.print(txt);
pw.close();
我用谷歌搜索了但我不知道如何解决我的问题。
答案 0 :(得分:0)
看到这个方向:
1. System.getProperty("line.separator");
2. System.lineSeparator();
例如:
pw.print(txt.replace("\n", System.lineSeparator()).replace("\r\n", System.lineSeparator()));
答案 1 :(得分:0)
您的代码应该没有问题。
无论如何,如果你使用Java 7,你应该使用Files
:
final Path path = Paths.get(nm + ".txt");
try (
BufferedWriter writer = Files.newBufferedWriter(path, StandardCharsets.UTF_8,
StandardOpenOption.APPEND, StandardOpenOption.CREATE_NEW);
) {
writer.write(txt);
writer.flush();
}