检测文件是不是存在[重复]
Posted
技术标签:
【中文标题】检测文件是不是存在[重复]【英文标题】:Detect that the file exists [duplicate]检测文件是否存在[重复] 【发布时间】:2012-10-25 07:06:36 【问题描述】:请问如何检测文件是否存在,并且每次运行时不要创建一个新文件。
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
方法。
【参考方案1】:
我认为这是你需要的:
public boolean settingsFileExits(final String fileName)
File f = new File(fileName);
return f.exists();
【讨论】:
为什么要使用三元运算符而不仅仅是“return f.exists();”? L0L,你是对的! :D 我没看到...谢谢指正!【参考方案2】:不要使用FileOutputStream
,而是使用File
类然后做
如果 file.exists()
和
不要立即在堆栈溢出中询问,而是谷歌它。
【讨论】:
【参考方案3】:使用File.exits()
:
File f = new File("file.tmp");// this does not create a file
if (f.exists())
System.out.println("File existed");
else
System.out.println("File not found!");
那么你甚至可以使用构造函数FileOutputStream(File f, boolean append)
【讨论】:
【参考方案4】:使用文件类 API:
File.exists
【讨论】:
【参考方案5】:怎么样
File f = new File("file.tmp");
if(f.exists())
// do something
【讨论】:
以上是关于检测文件是不是存在[重复]的主要内容,如果未能解决你的问题,请参考以下文章
检测 session_id(some-id) 是不是存在[重复]
检测文件是不是被另一个进程(或实际上是同一个进程)锁定[重复]