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

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


StringBufferInputStreamjava.io

Java 1.0; Deprecated in 1.1@Deprecated closeable

This class is a subclass of
InputStream in which input bytes come from the
characters of a specified String object. This
class does not correctly convert the characters of a
StringBuffer into bytes and is deprecated as of
Java 1.1. Use StringReader instead to convert
characters into bytes or use ByteArrayInputStream
to read bytes from an array of bytes.


Figure 9-58. java.io.StringBufferInputStream

public class

StringBufferInputStream extends InputStream {
// Public Constructors
public

StringBufferInputStream (String

s );
// Public Methods Overriding InputStream
public int

available ( ); synchronized
public int

read ( ); synchronized
public int

read (byte[ ]

b , int

off , int

len ); synchronized
public void

reset ( ); synchronized
public long

skip (long

n ); synchronized
// Protected Instance Fields
protected String

buffer ;
protected int

count ;
protected int

pos ;
}



    / 1191