- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- java.io.FileNotFoundException
-
- All Implemented Interfaces:
-
Serializable
public class FileNotFoundException extends IOException
指示尝试打开由指定路径名表示的文件失败。此异常将被抛出
FileInputStream
,FileOutputStream
,并RandomAccessFile
构造函数用指定的路径名的文件不存在。 如果文件确实存在但由于某种原因存在,这些构造函数也将被抛出,例如当尝试打开只读文件进行写入时。- 从以下版本开始:
- 1.0
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 FileNotFoundException()
构造一个FileNotFoundException
其中包含null
作为其错误详细消息。FileNotFoundException(String s)
构造具有指定详细消息的FileNotFoundException
。
-
方法摘要
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
FileNotFoundException
public FileNotFoundException()
构造一个FileNotFoundException
其中包含null
作为其错误详细消息。
-
FileNotFoundException
public FileNotFoundException(String s)
构造具有指定详细消息的FileNotFoundException
。 字符串s
可以稍后通过类别java.lang.Throwable
的
方法检索。Throwable.getMessage()
- 参数
-
s
- 详细信息。
-
-