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

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

最佳答案

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.
  }
}

10-07 19:40
查看更多