所有类
java.io
类 InterruptedIOException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
java.io.InterruptedIOException
-
所有已实现的接口:
-
Serializable
-
直接已知子类:
-
SocketTimeoutException
-
public class InterruptedIOException
- extends IOException
I/O 操作已中断信号。抛出 InterruptedIOException
指示输入或输出传输已经终止,原因是执行此操作的线程中断。字段 bytesTransferred
指示在发生中断之前已成功传输了多少字节。
-
从以下版本开始:
-
JDK1.0
-
另请参见:
-
InputStream
, OutputStream
, Thread.interrupt()
, 序列化表格
从类 java.lang.Throwable 继承的方法 |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
bytesTransferred
public int bytesTransferred
-
报告 I/O 操作中断之前传输了其中多少字节。
InterruptedIOException
public InterruptedIOException()
-
构造一个
InterruptedIOException
,使用 null
作为其错误消息。
InterruptedIOException
public InterruptedIOException(String s)
-
构造带指定详细消息的
InterruptedIOException
。稍后可以通过 java.lang.Throwable
类的 Throwable.getMessage()
方法检索字符串 s
。
-
参数:
-
s
- 详细消息。
所有类