public class BufferedInputStream extends FilterInputStream
Modifier and Type | Field and Description |
---|---|
protected byte[] |
buf |
protected int |
count |
protected int |
marklimit |
protected int |
markpos |
protected int |
pos |
in
Constructor and Description |
---|
BufferedInputStream(InputStream var0) |
BufferedInputStream(InputStream var0,
int var1) |
Modifier and Type | Method and Description |
---|---|
int |
available() |
void |
close() |
void |
mark(int var0) |
boolean |
markSupported() |
int |
read() |
int |
read(byte[] var0,
int var1,
int var2) |
void |
reset() |
long |
skip(long var0) |
read
protected byte[] buf
protected int count
protected int marklimit
protected int markpos
protected int pos
public BufferedInputStream(InputStream var0)
public BufferedInputStream(InputStream var0, int var1)
public int available() throws IOException
available
in class FilterInputStream
IOException
public void close() throws IOException
close
in class FilterInputStream
IOException
public void mark(int var0)
mark
in class FilterInputStream
public boolean markSupported()
markSupported
in class FilterInputStream
public int read() throws IOException
read
in class FilterInputStream
IOException
public int read(byte[] var0, int var1, int var2) throws IOException
read
in class FilterInputStream
IOException
public void reset() throws IOException
reset
in class FilterInputStream
IOException
public long skip(long var0) throws IOException
skip
in class FilterInputStream
IOException
Copyright © 2006–2013 OSGi Alliance. All rights reserved.