KickJava   Java API By Example, From Geeks To Geeks.

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

java.io
Class PushbackInputStream

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

public int available()
              throws IOException
See Also:
FilterInputStream.in
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 void close()
           throws IOException
See Also:
FilterInputStream.in, Closeable
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


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


public boolean markSupported()
See Also:
InputStream.reset(), InputStream.mark(int), FilterInputStream
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 PushbackInputStream(InputStream in)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


[1298]Use the PushbackInputStream in the ServletReques
By Anonymous on 2005/02/09 17:18:09  Rate
//You can use the PushbackInputStream in the ServletRequest 
 Map map = request.getParameterMap (  ) ;  
 PushbackInputStream in = new PushbackInputStream ( request.getInputStream (  )  ) ;  
 


public PushbackInputStream(InputStream in,
                           int size)
See Also:
IllegalArgumentException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


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


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


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


public long skip(long n)
          throws IOException
See Also:
FilterInputStream.in
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void unread(byte[] b)
            throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void unread(byte[] b,
                   int off,
                   int len)
            throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void unread(int b)
            throws IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags