在Java中(相当于Perl的-e $filename)打开文件读取之前,如何检查文件是否存在?

SO中唯一类似的问题涉及写入文件,因此使用FileWriter来回答,这显然不适用于这里。

如果可能的话,我更喜欢一个真正的API调用返回true/false,而不是一些“调用API打开一个文件,并在它抛出一个异常时捕获你检查文本中的‘无文件’”,但我可以接受后者。


当前回答

第一次点击“java文件存在”在谷歌:

import java.io.*;

public class FileTest {
    public static void main(String args[]) {
        File f = new File(args[0]);
        System.out.println(f + (f.exists()? " is found " : " is missing "));
    }
}

其他回答

具有良好编码实践并涵盖所有情况的简单示例:

 private static void fetchIndexSafely(String url) throws FileAlreadyExistsException {
        File f = new File(Constants.RFC_INDEX_LOCAL_NAME);
        if (f.exists()) {
            throw new FileAlreadyExistsException(f.getAbsolutePath());
        } else {
            try {
                URL u = new URL(url);
                FileUtils.copyURLToFile(u, f);
            } catch (MalformedURLException ex) {
                Logger.getLogger(RfcFetcher.class.getName()).log(Level.SEVERE, null, ex);
            } catch (IOException ex) {
                Logger.getLogger(RfcFetcher.class.getName()).log(Level.SEVERE, null, ex);
            }
        }
    }

参考和更多的例子在

https://zgrepcode.com/examples/java/java/nio/file/filealreadyexistsexception-implementations

File f = new File(filePathString); 

这将不会创建物理文件。只会创建File类的对象。要物理创建一个文件,你必须显式地创建它:

f.createNewFile();

因此f.exists()可以用来检查这样的文件是否存在。

不要在String中使用File构造函数。 这可能行不通! 而不是使用URI:

File f = new File(new URI("file:///"+filePathString.replace('\\', '/')));
if(f.exists() && !f.isDirectory()) { 
    // to do
}

不喜欢。只是捕捉FileNotFoundException。文件系统必须测试文件是否存在。把所有的事情都做两次是没有意义的,原因如下:

双倍代码 计时窗口问题,即文件可能在测试时存在,但在打开时不存在,反之亦然 事实上,这个问题的存在表明,你可能做了错误的测试,得到了错误的答案。

不要试图猜测这个系统。它知道。不要试图预测未来。一般来说,测试任何资源是否可用的最佳方法就是尝试使用它。

使用Java 8:

if(Files.exists(Paths.get(filePathString))) { 
    // do something
}