KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > io > ByteArrayInputStream

java.io
Class ByteArrayInputStream

java.lang.Object
  extended by java.io.InputStream
      extended by java.io.ByteArrayInputStream
All Implemented Interfaces:
Closeable
See Also:
Top Examples, Source Code, StringBufferInputStream

public int available()
See Also:
InputStream
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected byte[] buf
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public ByteArrayInputStream(byte[] buf)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public ByteArrayInputStream(byte[] buf,
                            int offset,
                            int length)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void close()
           throws IOException
See Also:
InputStream, Closeable
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected int count
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected int mark
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void mark(int readAheadLimit)
See Also:
InputStream.reset()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public boolean markSupported()
See Also:
InputStream.reset(), InputStream.mark(int)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected int pos
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int read()
See Also:
InputStream
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int read(byte[] b,
                int off,
                int len)
See Also:
InputStream.read()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void reset()
See Also:
IOException, InputStream.mark(int)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public long skip(long n)
See Also:
InputStream
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags