在Java中,清空文件內容的方法有多種方式,以下是其中幾種常用的方法:
File file = new File("example.txt");
try (FileWriter writer = new FileWriter(file)) {
writer.write(""); // 將文件內容設置為空字符串
} catch (IOException e) {
e.printStackTrace();
}
File file = new File("example.txt");
try (PrintWriter writer = new PrintWriter(file)) {
writer.print(""); // 將文件內容設置為空字符串
} catch (FileNotFoundException e) {
e.printStackTrace();
}
File file = new File("example.txt");
try (RandomAccessFile raf = new RandomAccessFile(file, "rw")) {
raf.setLength(0); // 設置文件長度為0,即清空文件內容
} catch (IOException e) {
e.printStackTrace();
}
以上是幾種常用的方法,你可以根據自己的需求選擇適合的方法來清空文件內容。