我想删除文本文件的内容,因为不需要其内容,但是我需要文本文件才能使代码正常工作。
import java.io.*;
import javax.swing.JOptionPane;
class code extends program{
String [][] stock= new String[10][10];
void show_stock()throws IOException{
BufferedReader br= new BufferedReader(new FileReader("C:\\Users\\Isaac Sam Camilleri\\Stock\\Documents\\stock.txt"));
for(int i=0; i<=9;i++){
stock[i][0]=br.readLine();
stock[0][i]=br.readLine();
}//load stock from document
for(int i=0;i<=9;i++){
System.out.println(stock[i][0] + " " + stock[0][i]);
}
}
}
答案 0 :(得分:0)
打开文件进行写入和关闭操作会将文件大小设置为0
void show_stock() throws IOException {
…
try( FileWriter fw = new FileWriter( "C:\\Users\\Isaac Sam Camilleri\\Stock\\Documents\\stock.txt" ) ) {
}
}