java如何检查文件是否存在并打开它?

时间:2012-03-27 17:57:59

标签: java

如何检查文件是否存在并打开它?

if(file is found)
{
    FileInputStream file = new FileInputStream("file");
}

3 个答案:

答案 0 :(得分:14)

File.isFile会告诉您文件存在且不是目录。

请注意,您的检查和尝试打开文件之间可能会删除该文件,并且该方法不会检查当前用户是否具有读取权限。

File f = new File("file");
if (f.isFile() && f.canRead()) {
  try {
    // Open the stream.
    FileInputStream in = new FileInputStream(f);
    // To read chars from it, use new InputStreamReader
    // and specify the encoding.
    try {
      // Do something with in.
    } finally {
      in.close();
    }
  } catch (IOException ex) {
    // Appropriate error handling here.
  }
}

答案 1 :(得分:6)

您需要先创建一个File对象,然后使用其exists()方法进行检查。然后可以将该文件对象传递给FileInputStream构造函数。

File file = new File("file");    
if (file.exists()) {
    FileInputStream fileInputStream = new FileInputStream(file);
}

答案 2 :(得分:1)

您可以在documentation中找到exists方法:

File file = new File(yourPath);
if(file.exists())
    FileInputStream file = new FileInputStream(file);