Module java.base
Package java.io

Class FileNotFoundException

所有已实现的接口:
Serializable

public class FileNotFoundException extends IOException
表示尝试打开指定路径名表示的文件失败。

当指定路径名的文件不存在时,FileInputStreamFileOutputStreamRandomAccessFile构造函数将抛出此异常。如果文件确实存在但由于某种原因无法访问,例如尝试以只读模式打开文件进行写入时,这些构造函数也会抛出该异常。

自版本:
1.0
参见:
  • Constructor Details

    • FileNotFoundException

      public FileNotFoundException()
      使用null作为其错误详细信息构造一个FileNotFoundException
    • FileNotFoundException

      public FileNotFoundException(String s)
      使用指定详细信息构造一个FileNotFoundException。字符串s可以稍后通过java.lang.Throwable类的Throwable.getMessage()方法检索。
      参数:
      s - 详细消息。