好的,我在将多行写入文本文件时遇到了一些麻烦。
程序运行,但它不会每次都使用新行
当我希望它运行 4 次时,文本文件应如下所示:
a
b
c
d
相反,它看起来像:
d
谁知道如何解决这个问题?所有导入均正确导入。
来源(它已被略微编辑,假设一切都已正确定义):
import java.io.*;
public class Compiler {
public static void main (String args[]) throws IOException
{
//there's lots of code here
BufferedWriter outStream= new BufferedWriter(new FileWriter("output.txt"));
outStream.newLine();
outStream.write(output);
outStream.close();
}
}