我必须将 textarea 的内容写入带有换行符的文件中。我得到了输出,它被写为文件中的一个字符串。
public void actionPerformed(ActionEvent ev) {
text.setVisible(true);
String str= text.getText();
System.out.println(str);
try {
BufferedWriter fileOut = new BufferedWriter(new FileWriter("filename.txt"));
fileOut.write(str);
fileOut.close();
} catch (IOException ioe) {
ioe.printStackTrace();
}
}
例子
输出应该是:
I
am
King.
但它显示:
IamKing.
请给我一些建议