Most visited

Recently visited

Added in API level 1

EOFException

public class EOFException
extends IOException

java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.io.IOException
         ↳ java.io.EOFException


在输入过程中表示文件末尾或流尾已经意外达到。

这个异常主要由数据输入流用来表示流结束。 请注意,许多其他输入操作在数据流结束时返回一个特殊值,而不是抛出异常。

也可以看看:

Summary

Public constructors

EOFException()

null作为其错误详细信息构造一个 EOFException

EOFException(String s)

用指定的详细信息构造一个 EOFException

Inherited methods

From class java.lang.Throwable
From class java.lang.Object

Public constructors

EOFException

Added in API level 1
EOFException ()

使用 null作为其错误详细信息构造一个 EOFException

EOFException

Added in API level 1
EOFException (String s)

用指定的详细信息构造一个EOFException 字符串s稍后可以通过类java.lang.ThrowablegetMessage()方法检索。

Parameters
s String: the detail message.

Hooray!