BufferedReader input = new BufferedReader (new FileReader("data.txt")); //Reading the file
String data [] = readFile (input); //data is each line in the file
String student [] = new String [10];
for(int x = 0; x<data.length; x++)
{
student = data[x].split(","); //each line is being split into 11 parts
}
我需要寫入此文件而不覆蓋它。我問10個問題,如「你的名字是什麼?」和「你的姓氏是什麼?」。我需要這些問題的答案進入學生[]。就像我說的,我需要代碼寫入這個文件而不覆蓋它。如何在不覆蓋java的情況下寫入文件?
我看到在這個代碼輸入,但沒有輸出。你打算如何在沒有任何輸出的情況下寫入文件? – Tdorno
您可以*追加*(關鍵字)到文件而不覆蓋它。 – user2864740
我認爲「追加」是你正在尋找的單詞,它需要在特定模式下打開文件,並觀察一些關於如何引用它的限制。 –