請如何檢測文件是否存在,並且每次運行時都不要創建新文件。檢測文件是否存在
public static void main(String[] args) throws IOException, ClassNotFoundException {
FileOutputStream fos = new FileOutputStream("file.tmp");
ObjectOutputStream oos = new ObjectOutputStream(fos);
oos.writeObject("12345");
oos.writeObject("Today");
oos.close();
}
如果您瀏覽了'File'類的文檔,您會發現: - ['File#exists'](http://docs.oracle.com/javase/7/docs/api/java/io /File.html#exists())方法。 –