0.0
テキストファイルからすべての行を削除しようとしています。
これはそれが出力するものです:
0037823478362839 0.0
0236530128715607 3.88
0425603748320896 36.09
0659644925904600 13.58
0823485731970306 0.0
0836430488858603 46.959999999999994
これは私が出力したいものです
0236530128715607 3.88
0425603748320896 36.09
0659644925904600 13.58
0836430488858603 46.959999999999994
コード:
// Collects the billing information and outputs them to a user defined .txt file
public void getBill() {
try {
PrintStream printStream = new PrintStream(outputFile);
Passenger[] p = getAllPassengers();
for(Passenger a : p){
printStream.print(a.getCardNumaber() + " ");
printStream.println(a.getBill());
}
printStream.close();
} catch(Exception e){
}
}