快速提问,我不知道我在这里缺少什么。如果我有一个连续 9 个数字和总共 9 行的控制台输出,我将如何将确切的输出写入外部文本文件,所以它在文本文件中看起来是一样的。
假设控制台如下所示:
2 4 5 1 9 3 6 8 7
9 7 6 2 5 8 4 1 3
1 8 3 7 4 6 9 2 5
8 5 2 3 1 9 7 4 6
3 1 9 4 6 7 8 5 2
7 6 4 5 8 2 3 9 1
4 3 8 6 2 5 1 7 9
5 9 7 8 3 1 2 6 4
6 2 1 9 7 4 5 3 8
并且该控制台输出存储在名为“myArray”的数组变量中我如何将其写入文本文件,使其看起来像那样(或用逗号分隔)
到目前为止,我有这个:
File solutionFile = new File("output.txt");
FileOutputStream stream = new FileOutputStream(solutionFile);
PrintStream writeOut = new PrintStream(stream);
System.setOut(writeOut);
for (int rows = 0; rows < 9; rows++) {
for (int columns = 0; columns < 9; columns++) {
System.out.println(myArray[rows][columns] + " ");
}
}
当它写入文件时,每个数字都放在自己的行上。可以提供任何帮助吗?谢谢!