|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
BufferedRandomAccessFile
is like a
RandomAccessFile
, but it uses a private buffer so that most
operations do not require a disk access.BufferedRandomAccessFile
on file
in mode mode
, which should be "r" for reading only, or
"rw" for reading and writing.
BufferedRandomAccessFile
on the file named
name
in mode mode
, which should be "r" for
reading only, or "rw" for reading and writing.
BufferedInputStream
adds functionality to another input
stream-namely, the ability to buffer the input and to support the
mark
and reset
methods.BufferedInputStream
and saves its argument, the
input stream in
, for later use.
BufferedInputStream
with the specified buffer
size, and saves its argument, the input stream in
, for
later use.
key
and ColumnFamily
or SuperColumn
.
mark
method of
InputStream
.
mark
method before subsequent calls to the reset
method fail.
pos
field at the time the last
mark
method was called.
mark
and
reset
methods.
read
method of
InputStream
.
reset
method of
InputStream
.
skip
method of
InputStream
.
len
bytes from the specified byte array starting at
offset off
to this buffered output stream.
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |