Java in a Nutshell, 5th Edition [Electronic resources] نسخه متنی

This is a Digital Library

With over 100,000 free electronic resource in Persian, Arabic and English

Java in a Nutshell, 5th Edition [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید



An
IOException that signals that an input or output
operation was interrupted. The bytesTransferred
field contains the number of bytes read or written before the
operation was interrupted.


Figure 9-27. java.io.InterruptedIOException

public class 

InterruptedIOException extends IOException {
// Public Constructors
public

InterruptedIOException ( );
public

InterruptedIOException (String

s );
// Public Instance Fields
public int

bytesTransferred ;
}


Subclasses


java.net.SocketTimeoutException


/ 1191