我正在開發一個小型java應用程序。在某些時候,我正在用純文本文件寫入一些數據。使用下面的代碼:Java:如何將格式化輸出寫入純文本文件
Writer Candidateoutput = null;
File Candidatefile = new File("Candidates.txt"),
Candidateoutput = new BufferedWriter(new FileWriter(Candidatefile));
Candidateoutput.write("\n Write this text on next line");
Candidateoutput.write("\t This is indented text");
Candidateoutput.close();
現在,每件事情都很好,該文件與預期的文本創建。唯一的問題是文本沒有格式化,所有的文本都在單行上。但是,如果我複製並粘貼MS Word中的文本,則文本會自動格式化。
在純文本文件中是否有任何方法來保存文本格式?
注:文本格式我指的是\n
和\t
只有