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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


This class is a
FilterOutputStream that provides output data
buffering; output efficiency is increased by storing values to be
written in a buffer and actually writing them out only when the
buffer fills up or when the flush(
)
method is called. Create a
BufferedOutputStream by specifying the
OutputStream that is to be buffered in the call to
the constructor. See also BufferedWriter.


Figure 9-2. java.io.BufferedOutputStream

public class 

BufferedOutputStream extends FilterOutputStream {
// Public Constructors
public

BufferedOutputStream (OutputStream

out );
public

BufferedOutputStream (OutputStream

out , int

size );
// Public Methods Overriding FilterOutputStream
public void

flush ( ) throws IOException; synchronized
public void

write (int

b ) throws IOException; synchronized
public void

write (byte[ ]

b , int

off , int

len ) throws IOException; synchronized
// Protected Instance Fields
protected byte[ ]

buf ;
protected int

count ;
}



/ 1191