java.io.InterruptedIOException翻译

来源:互联网 发布:pokemon go 软件 编辑:程序博客网 时间:2024/05/22 05:24
 Overview Package  Class Use Tree Deprecated Index Help JavaTM 2 Platform
Std. Ed. v1.4.2
 PREV CLASS   NEXT CLASSFRAMES    NO FRAMES     All Classes SUMMARY: NESTED | FIELD | CONSTR | METHODDETAIL: FIELD | CONSTR | METHOD

java.io
Class InterruptedIOException

java.lang.Object  extended byjava.lang.Throwable      extended byjava.lang.Exception          extended byjava.io.IOException              extended byjava.io.InterruptedIOException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
SocketTimeoutException

public class InterruptedIOException
extends IOException

Signals 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 Form

Field Summary intbytesTransferred
          Reports how many bytes had been transferred as part of the I/O operation before it was interrupted. 报告在I/O操作中断之前已经传输的字节数。
  Constructor SummaryInterruptedIOException()
          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.ThrowablefillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString  Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait 

Field Detail

bytesTransferred

public int bytesTransferred
Reports how many bytes had been transferred as part of the I/O operation before it was interrupted. 报告在I/O操作中断之前已经传输的字节数。

Constructor Detail

InterruptedIOException

public InterruptedIOException()
Constructs an InterruptedIOException with null as its error detail message. 创建一个错误详细信息为null的InterruptedIOException。


InterruptedIOException

public 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. 详细信息。

Overview Package  Class Use Tree Deprecated Index Help JavaTM 2 Platform
Std. Ed. v1.4.2
 PREV CLASS   NEXT CLASSFRAMES    NO FRAMES     All Classes SUMMARY: NESTED | FIELD | CONSTR | METHODDETAIL: FIELD | CONSTR | METHOD
Submit a bug or feature
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.

原创粉丝点击