Package java.io
Class BufferedInputStream
- java.lang.Object
-
- java.io.InputStream
-
- java.io.FilterInputStream
-
- java.io.BufferedInputStream
-
public class BufferedInputStream extends FilterInputStream
-
-
Constructor Summary
Constructors Constructor Description BufferedInputStream(InputStream var0)BufferedInputStream(InputStream var0, int var1)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intavailable()voidclose()voidmark(int var0)booleanmarkSupported()intread()intread(byte[] var0, int var1, int var2)voidreset()longskip(long var0)-
Methods inherited from class java.io.FilterInputStream
read
-
-
-
-
Constructor Detail
-
BufferedInputStream
public BufferedInputStream(InputStream var0)
-
BufferedInputStream
public BufferedInputStream(InputStream var0, int var1)
-
-
Method Detail
-
available
public int available() throws IOException- Overrides:
availablein classFilterInputStream- Throws:
IOException
-
close
public void close() throws IOException- Overrides:
closein classFilterInputStream- Throws:
IOException
-
mark
public void mark(int var0)
- Overrides:
markin classFilterInputStream
-
markSupported
public boolean markSupported()
- Overrides:
markSupportedin classFilterInputStream
-
read
public int read() throws IOException- Overrides:
readin classFilterInputStream- Throws:
IOException
-
read
public int read(byte[] var0, int var1, int var2) throws IOException- Overrides:
readin classFilterInputStream- Throws:
IOException
-
reset
public void reset() throws IOException- Overrides:
resetin classFilterInputStream- Throws:
IOException
-
skip
public long skip(long var0) throws IOException- Overrides:
skipin classFilterInputStream- Throws:
IOException
-
-