Module java.base
Package java.io

Class InterruptedIOException

所有已实现的接口:
Serializable
直接已知子类:
SocketTimeoutException

public class InterruptedIOException extends IOException
表示I/O操作已被中断。抛出 InterruptedIOException 表示输入或输出传输已被终止,因为执行它的线程被中断。字段 bytesTransferred 指示在中断发生之前成功传输了多少字节。
自版本:
1.0
参见:
  • Field Details

    • bytesTransferred

      public int bytesTransferred
      报告在I/O操作被中断之前已传输了多少字节。
  • Constructor Details

    • InterruptedIOException

      public InterruptedIOException()
      使用 null 作为其错误详细信息构造一个 InterruptedIOException
    • InterruptedIOException

      public InterruptedIOException(String s)
      使用指定的详细信息构造一个 InterruptedIOException。字符串 s 可以稍后通过 Throwable.getMessage() 方法从 java.lang.Throwable 类中检索。
      参数:
      s - 详细消息。