JavaTM 2 Platform
Standard Ed. 6

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(), 序列化表格

欄位摘要
 int bytesTransferred
          報告 I/O 操作中斷之前傳輸了其中多少位元組。
 
建構子摘要
InterruptedIOException()
          建構一個 InterruptedIOException,使用 null 作為其錯誤訊息。
InterruptedIOException(String s)
          建構帶指定詳細訊息的 InterruptedIOException
 
方法摘要
 
從類別 java.lang.Throwable 繼承的方法
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
從類別 java.lang.Object 繼承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

欄位詳細資訊

bytesTransferred

public int bytesTransferred
報告 I/O 操作中斷之前傳輸了其中多少位元組。

建構子詳細資訊

InterruptedIOException

public InterruptedIOException()
建構一個 InterruptedIOException,使用 null 作為其錯誤訊息。


InterruptedIOException

public InterruptedIOException(String s)
建構帶指定詳細訊息的 InterruptedIOException。稍後可以通過 java.lang.Throwable 類別的 Throwable.getMessage() 方法獲取字元串 s

參數:
s - 詳細訊息。

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only