我将多行作为 JTextarea 的输入,如果我将其写入文件中,那么我会发现多行写入文件中的一行
例子:
在 JTextArea 中:
I
am
a
student
意思是:variable.text="I'\n'am'\n'a'\n'student"; 当我在文件中写入字符串 s 时,我得到:
I am a student
但我希望该文件包含与我作为输入方式提供的相同的内容--->
I
am
a
student
这是编写文件的代码:
BufferedWriter out = new BufferedWriter(
new OutputStreamWriter(
new FileOutputStream(file), "UTF16"));
int size=1;
for(Tableclass variable:tablevector)
{
out.write(variable.Text);
out.newLine();
size++;
}
out.close();