public class InterruptedIOException
extends IOException
java.lang.Object | ||||
↳ | java.lang.Throwable | |||
↳ | java.lang.Exception | |||
↳ | java.io.IOException | |||
↳ | java.io.InterruptedIOException |
Known Direct Subclasses |
表示I / O操作已被中断。 InterruptedIOException
被抛出,表示输入或输出传输已被终止,因为执行它的线程被中断。 字段bytesTransferred
指示在中断发生之前成功传输了多少个字节。
也可以看看:
Fields |
|
---|---|
public int |
bytesTransferred 报告在I / O操作中断之前已传输了多少字节作为I / O操作的一部分。 |
Public constructors |
|
---|---|
InterruptedIOException() 构造一个 |
|
InterruptedIOException(String s) 用指定的详细信息构造一个 |
Inherited methods |
|
---|---|
From class java.lang.Throwable
|
|
From class java.lang.Object
|
InterruptedIOException ()
用 null
作为错误详细信息构造一个 InterruptedIOException
。
InterruptedIOException (String s)
用指定的详细信息构造一个InterruptedIOException
。 字符串s
可以稍后由检索
类的方法getMessage()
java.lang.Throwable
。
Parameters | |
---|---|
s |
String : the detail message. |