我有一个非常愚蠢的问题......我不知道如何将结果保存在输出文件中,第二个数组保存在较低的行中。
这就是它的节省方式:
dist [0 10 13 10 6 18] pred [-15 2 5 1 4]
我希望它像这样保存:
dist[0 10 13 10 6 18 ]
pred[-15 2 5 1 4 ]
CODE:
try{
outputFile = new File("Out0304.txt");
out = new FileWriter(outputFile);
out.write("\n" + "dist[");
out.write("\n");
for (Top way : tops){
out.write(way.shortest_path + " ");
}
out.write("]\n");
out.write("\n");
out.write("\n" + "pred[");
for (Top ww : tops){
if (ww.previous != null) {
out.write(ww.previous.number + " ");
}
else{
out.write("-1");
}
}
out.write("] \n ");
out.close();
}
catch (IOException e){
System.out.println("Blad: " + e.toString());
}
}
}
答案 0 :(得分:2)
在Windows中,新行
需要"\r\n"
答案 1 :(得分:0)
您可以使用以下内容写入文件:
PrintWriter pw = new PrintWriter(new FileWriter("fileName"),true);
pw.println("[");
for(int i=0;i<pred.length;i++)
{
pw.println(pred[i]+" ");
}
pw.println("]");
pw.close();