我想将文本保存在文本文件中,并且需要保存 \n 字符来分隔文本中的元素。正文如下:
“这是一个 java 程序。它将文本保存在 .txt 文件中。
你可以选择它应该保存在哪里。”
如何将 \n (换行符)保存在 .txt 文件中?
以下是我用来将文本保存在文本文件中的代码段:
FileOutputStream fout = null;
try {
fout = new FileOutputStream(destinationFile);
} catch (FileNotFoundException e) {
System.out.println("output File not found");
return false;
}
Scanner sc = new Scanner(text);
while (sc.hasNext()) {
fout.write((sc.next().getBytes()));
}
fout.close();