[/url] [url=file:///F:/资料/文字资料/j2sdk-1_4_2-doc/docs/api/overview-summary.html]Overview
Class
JavaTM 2 Platform
Std. Ed. v1.4.2
SUMMARY: NESTED | FIELD | CONSTR | METHOD
DETAIL: FIELD | CONSTR | METHOD
java.io
Class InterruptedIOExceptionjava.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
java.io.InterruptedIOException
All Implemented Interfaces: Serializable Direct Known Subclasses: SocketTimeoutException public class InterruptedIOException extends IOExceptionSignals that an I/O operation has been interrupted. An InterruptedIOException is thrown to indicate that an input or output transfer has been terminated because the thread performing it was interrupted. The field bytesTransferred indicates how many bytes were successfully transferred before the interruption occurred. 表示I/O操作已被中断。抛出InterruptedIOException表示输入/输出传输已被终止,因为 执行它的线程被中断。bytesTransferred域表示在中断发生之前已成功传输的字节数。
Since: JDK1.0 See Also: InputStream, OutputStream, Thread.interrupt(), Serialized FormField Summary
int
Reports how many bytes had been transferred as part of the I/O operation before it was interrupted. 报告在I/O操作中断之前已经传输的字节数。
Constructor Summary
Constructs an InterruptedIOException with null as its error detail message. 创建一个错误详细信息为null的InterruptedIOException。
InterruptedIOException(String s)
Constructs an InterruptedIOException with the specified detail message. 创建一个指定详细信息的InterruptedIOException。
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, )]setStackTrace, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Field Detail
bytesTransferredpublic int bytesTransferred
Reports how many bytes had been transferred as part of the I/O operation before it was interrupted. 报告在I/O操作中断之前已经传输的字节数。
Constructor Detail
InterruptedIOExceptionpublic InterruptedIOException()
Constructs an InterruptedIOException with null as its error detail message. 创建一个错误详细信息为null的InterruptedIOException。
InterruptedIOExceptionpublic InterruptedIOException(String s)
Constructs an InterruptedIOException with the specified detail message. The string s can be retrieved later by the Throwable.getMessage() method of class java.lang.Throwable. 创建一个指定详细信息的InterruptedIOException。错误信息字符串s可以通过类 java.lang.Throwable的Throwable.getMessage()方法获取。
Parameters: s - the detail message. 详细信息。[/url][url=file:///F:/资料/文字资料/j2sdk-1_4_2-doc/docs/api/overview-summary.html]Overview
Class
JavaTM 2 Platform
Std. Ed. v1.4.2
SUMMARY: NESTED | FIELD | CONSTR | METHOD
DETAIL: FIELD | CONSTR | METHOD
For further API reference and developer documentation, see Java 2 SDK SE Developer Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples. Copyright 2003 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.