例如可以說我有以下字符串,如何保存文件,正是因爲它是從一個字符串的Java
String str = "Patient: " + patient +
"\nMonth: " + month +
"\nDay : " + day +
"\nYear: " + year
+"\nDescription: " + description;
//And I write this data to a file,
PrintWriter outputFile = new PrintWriter("hello.txt");
outputFile.println(str);
然後在文件中的結果僅僅是一個單一的線,當我打開它, 有沒有辦法,只是將字符串傳遞到文件中的格式。
預先感謝您。
你在Windows上,不是'cha? – nasukkin