public class dataarrange {
public static void main(String args[]) {
try {
PrintStream myconsole = new PrintStream(new File("D://out.txt"));
for (int i = 0; i < 10; i++) {
double a = Math.sqrt(i);
int b = 10 + 5;
double c = Math.cos(i);
myconsole.print(a);
myconsole.print(b);
myconsole.print(c);
}
} catch (FileNotFoundException ex) {
System.out.println(ex);
}
}
}
在这个编程代码中,我生成一个名为out
的文本文件,其中我写下dataarrange class.
的输出。代码中没有错误。根据代码,我们得到a,b,c 10次。我在文本文件中以系统的方式记下了这个值。文本文件应该看起来像一个有10行3列的矩阵。但是当我打开文本文件out.txt时,所有数据都是分散的。它们被写成一条线而不是矩阵格式。
期望的输出:
a b c
val1 val2 val3
val4 val5 val6
val7 val8 val9
所以......
但获得输出val1 val2 val3 val4 val5 val6
。我怎么能解决这个问题?
答案 0 :(得分:1)
在for循环中使用它将对齐列:
double a = Math.sqrt(i);
int b=10+5;
double c=Math.cos(i);
myconsole.printf("%10f %10d %10f", a, b, c);
myconsole.println();
输出:
0.000000 15 1.000000
1.000000 15 0.540302
1.414214 15 -0.416147
1.732051 15 -0.989992
2.000000 15 -0.653644
2.236068 15 0.283662
2.449490 15 0.960170
2.645751 15 0.753902
2.828427 15 -0.145500
3.000000 15 -0.911130
答案 1 :(得分:0)
你也可以使用转义序列\ n \ t但是上面的带有格式化字符串的anwser应该是首选的
包裹测试;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.PrintStream;
public class DataRange {
public static void main(String args[]) {
try {
PrintStream myconsole = new PrintStream(new File("out.txt"));
for (int i = 0; i < 10; i++) {
double a = Math.sqrt(i);
int b = 10 + 5;
double c = Math.cos(i);
System.out.print("\t" + a);
myconsole.print("\t" + a);
System.out.print("\t" + b);
myconsole.print("\t" + b);
System.out.print("\t" + c);
myconsole.print("\t" + c);
myconsole.print("\n");
System.out.println("\n");
System.out.println("Completed");
}
} catch (FileNotFoundException ex) {
System.out.println(ex);
}
}
}