我有一个变量文件列表。
filelist = "Example 1\n Example 2\n"
当我这样做时,System.out.println(filename)
我得到:
"Example 1
Example 2"
但是当我写入 txt 文件时,我得到:
"Example 1 Example 2"
我如何让这些从 \n 的换行符开始?
try {
TextFile = new Formatter("C:\\Text.txt");
} catch (Exception e) {
e.printStackTrace();
} finally {
TextFile.format("%s", filename);
TextFile.close();
}