hello guys我在我的應用程序中有一個將jtextarea上的數據保存爲.txt文件的代碼。 問題是,當我在我的jtextarea上輸入多行文本並將其保存爲「.txt」文件時,整個數據寫爲一行文本。將Jtext區域的確切文本寫入文件
String content = txtDescriptionCity.getText(); //jtextarea
File file = new File("C:\\Tour v0.1\\Descriptions\\City\\"+txtcityname.getText()+".txt");
if (!file.exists()) {
file.createNewFile();
}
FileWriter fw = new FileWriter(file.getAbsoluteFile());
BufferedWriter bw = new BufferedWriter(fw);
bw.write(content);
bw.close();
我想寫的文字,因爲它是對的JTextArea喜歡這張
「文本行一個
文本線兩條
文本行三」
所有的文本將作爲單個字符串出現,您需要拆分字符串,然後將其寫入文本文件。 –