- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- java.io.EOFException
-
- All Implemented Interfaces:
-
Serializable
public class EOFException extends IOException
表示在输入过程中意外地到达文件结束或流结束。这个异常主要由数据输入流用来表示流的结尾。 请注意,许多其他输入操作在流的末尾返回特殊值,而不是抛出异常。
- 从以下版本开始:
- 1.0
- 另请参见:
-
DataInputStream
,IOException
, Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 EOFException()
构造EOFException
其中包含null
作为其错误详细消息。EOFException(String s)
构造具有指定详细消息的EOFException
。
-
方法摘要
-
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
-
-
-
-
构造方法详细信息
-
EOFException
public EOFException()
构造null
作为其错误详细信息,EOFException
包含null
。
-
EOFException
public EOFException(String s)
构造具有指定详细消息的EOFException
。 字符串s
可以稍后通过类别java.lang.Throwable
的
方法来检索。Throwable.getMessage()
- 参数
-
s
- 详细信息。
-
-