java.io
Class PushbackInputStream

java.lang.Object sample code for java.lang.Object definition code for java.lang.Object 
  extended by java.io.InputStream sample code for java.io.InputStream definition code for java.io.InputStream 
      extended by java.io.FilterInputStream sample code for java.io.FilterInputStream definition code for java.io.FilterInputStream 
          extended by java.io.PushbackInputStream
All Implemented Interfaces:
Closeable sample code for java.io.Closeable definition code for java.io.Closeable

public class PushbackInputStream
extends FilterInputStream sample code for java.io.FilterInputStream definition code for java.io.FilterInputStream

A PushbackInputStream adds functionality to another input stream, namely the ability to "push back" or "unread" one byte. This is useful in situations where it is convenient for a fragment of code to read an indefinite number of data bytes that are delimited by a particular byte value; after reading the terminating byte, the code fragment can "unread" it, so that the next read operation on the input stream will reread the byte that was pushed back. For example, bytes representing the characters constituting an identifier might be terminated by a byte representing an operator character; a method whose job is to read just an identifier can read until it sees the operator and then push the operator back to be re-read.

Since:
JDK1.0

Field Summary
protected  byte[] buf sample code for java.io.PushbackInputStream.buf definition code for java.io.PushbackInputStream.buf
          The pushback buffer.
protected  int pos sample code for java.io.PushbackInputStream.pos definition code for java.io.PushbackInputStream.pos
          The position within the pushback buffer from which the next byte will be read.
 
Fields inherited from class java.io.FilterInputStream sample code for java.io.FilterInputStream definition code for java.io.FilterInputStream
in sample code for java.io.FilterInputStream.in definition code for java.io.FilterInputStream.in
 
Constructor Summary
PushbackInputStream sample code for java.io.PushbackInputStream.PushbackInputStream(java.io.InputStream) definition code for java.io.PushbackInputStream.PushbackInputStream(java.io.InputStream) (InputStream sample code for java.io.InputStream definition code for java.io.InputStream  in)
          Creates a PushbackInputStream and saves its argument, the input stream in, for later use.
PushbackInputStream sample code for java.io.PushbackInputStream.PushbackInputStream(java.io.InputStream, int) definition code for java.io.PushbackInputStream.PushbackInputStream(java.io.InputStream, int) (InputStream sample code for java.io.InputStream definition code for java.io.InputStream  in, int size)
          Creates a PushbackInputStream with a pushback buffer of the specified size, and saves its argument, the input stream in, for later use.
 
Method Summary
 int available sample code for java.io.PushbackInputStream.available() definition code for java.io.PushbackInputStream.available() ()
          Returns the number of bytes that can be read from this input stream without blocking.
 void close sample code for java.io.PushbackInputStream.close() definition code for java.io.PushbackInputStream.close() ()
          Closes this input stream and releases any system resources associated with the stream.
 void mark sample code for java.io.PushbackInputStream.mark(int) definition code for java.io.PushbackInputStream.mark(int) (int readlimit)
          Marks the current position in this input stream.
 boolean markSupported sample code for java.io.PushbackInputStream.markSupported() definition code for java.io.PushbackInputStream.markSupported() ()
          Tests if this input stream supports the mark and reset methods, which it does not.
 int read sample code for java.io.PushbackInputStream.read() definition code for java.io.PushbackInputStream.read() ()
          Reads the next byte of data from this input stream.
 int read sample code for java.io.PushbackInputStream.read(byte[], int, int) definition code for java.io.PushbackInputStream.read(byte[], int, int) (byte[] b, int off, int len)
          Reads up to len bytes of data from this input stream into an array of bytes.
 void reset sample code for java.io.PushbackInputStream.reset() definition code for java.io.PushbackInputStream.reset() ()
          Repositions this stream to the position at the time the mark method was last called on this input stream.
 long skip sample code for java.io.PushbackInputStream.skip(long) definition code for java.io.PushbackInputStream.skip(long) (long n)
          Skips over and discards n bytes of data from this input stream.
 void unread sample code for java.io.PushbackInputStream.unread(byte[]) definition code for java.io.PushbackInputStream.unread(byte[]) (byte[] b)
          Pushes back an array of bytes by copying it to the front of the pushback buffer.
 void unread sample code for java.io.PushbackInputStream.unread(byte[], int, int) definition code for java.io.PushbackInputStream.unread(byte[], int, int) (byte[] b, int off, int len)
          Pushes back a portion of an array of bytes by copying it to the front of the pushback buffer.
 void unread sample code for java.io.PushbackInputStream.unread(int) definition code for java.io.PushbackInputStream.unread(int) (int b)
          Pushes back a byte by copying it to the front of the pushback buffer.
 
Methods inherited from class java.io.FilterInputStream sample code for java.io.FilterInputStream definition code for java.io.FilterInputStream
read sample code for java.io.FilterInputStream.read(byte[]) definition code for java.io.FilterInputStream.read(byte[])
 
Methods inherited from class java.lang.Object sample code for java.lang.Object definition code for java.lang.Object
clone sample code for java.lang.Object.clone() definition code for java.lang.Object.clone() , equals sample code for java.lang.Object.equals(java.lang.Object) definition code for java.lang.Object.equals(java.lang.Object) , finalize sample code for java.lang.Object.finalize() definition code for java.lang.Object.finalize() , getClass sample code for java.lang.Object.getClass() definition code for java.lang.Object.getClass() , hashCode sample code for java.lang.Object.hashCode() definition code for java.lang.Object.hashCode() , notify sample code for java.lang.Object.notify() definition code for java.lang.Object.notify() , notifyAll sample code for java.lang.Object.notifyAll() definition code for java.lang.Object.notifyAll() , toString sample code for java.lang.Object.toString() definition code for java.lang.Object.toString() , wait sample code for java.lang.Object.wait() definition code for java.lang.Object.wait() , wait sample code for java.lang.Object.wait(long) definition code for java.lang.Object.wait(long) , wait sample code for java.lang.Object.wait(long, int) definition code for java.lang.Object.wait(long, int)
 

Field Detail

buf sample code for java.io.PushbackInputStream.buf

protected byte[] buf
The pushback buffer.

Since:
JDK1.1

pos sample code for java.io.PushbackInputStream.pos

protected int pos
The position within the pushback buffer from which the next byte will be read. When the buffer is empty, pos is equal to buf.length; when the buffer is full, pos is equal to zero.

Since:
JDK1.1
Constructor Detail

PushbackInputStream sample code for java.io.PushbackInputStream(java.io.InputStream, int) definition code for java.io.PushbackInputStream(java.io.InputStream, int)

public PushbackInputStream(InputStream sample code for java.io.InputStream definition code for java.io.InputStream  in,
                           int size)
Creates a PushbackInputStream with a pushback buffer of the specified size, and saves its argument, the input stream in, for later use. Initially, there is no pushed-back byte (the field pushBack is initialized to -1).

Parameters:
in - the input stream from which bytes will be read.
size - the size of the pushback buffer.
Throws:
IllegalArgumentException sample code for java.lang.IllegalArgumentException definition code for java.lang.IllegalArgumentException - if size is <= 0
Since:
JDK1.1

PushbackInputStream sample code for java.io.PushbackInputStream(java.io.InputStream) definition code for java.io.PushbackInputStream(java.io.InputStream)

public PushbackInputStream(InputStream sample code for java.io.InputStream definition code for java.io.InputStream  in)
Creates a PushbackInputStream and saves its argument, the input stream in, for later use. Initially, there is no pushed-back byte (the field pushBack is initialized to -1).

Parameters:
in - the input stream from which bytes will be read.
Method Detail

read sample code for java.io.PushbackInputStream.read() definition code for java.io.PushbackInputStream.read()

public int read()
         throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Reads the next byte of data from this input stream. The value byte is returned as an int in the range 0 to 255. If no byte is available because the end of the stream has been reached, the value -1 is returned. This method blocks until input data is available, the end of the stream is detected, or an exception is thrown.

This method returns the most recently pushed-back byte, if there is one, and otherwise calls the read method of its underlying input stream and returns whatever value that method returns.

Overrides:
read sample code for java.io.FilterInputStream.read() definition code for java.io.FilterInputStream.read() in class FilterInputStream sample code for java.io.FilterInputStream definition code for java.io.FilterInputStream
Returns:
the next byte of data, or -1 if the end of the stream has been reached.
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs.
See Also:
InputStream.read() sample code for java.io.InputStream.read() definition code for java.io.InputStream.read()

read sample code for java.io.PushbackInputStream.read(byte[], int, int) definition code for java.io.PushbackInputStream.read(byte[], int, int)

public int read(byte[] b,
                int off,
                int len)
         throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Reads up to len bytes of data from this input stream into an array of bytes. This method first reads any pushed-back bytes; after that, if fewer than len bytes have been read then it reads from the underlying input stream. This method blocks until at least 1 byte of input is available.

Overrides:
read sample code for java.io.FilterInputStream.read(byte[], int, int) definition code for java.io.FilterInputStream.read(byte[], int, int) in class FilterInputStream sample code for java.io.FilterInputStream definition code for java.io.FilterInputStream
Parameters:
b - the buffer into which the data is read.
off - the start offset of the data.
len - the maximum number of bytes read.
Returns:
the total number of bytes read into the buffer, or -1 if there is no more data because the end of the stream has been reached.
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs.
See Also:
InputStream.read(byte[], int, int) sample code for java.io.InputStream.read(byte[], int, int) definition code for java.io.InputStream.read(byte[], int, int)

unread sample code for java.io.PushbackInputStream.unread(int) definition code for java.io.PushbackInputStream.unread(int)

public void unread(int b)
            throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Pushes back a byte by copying it to the front of the pushback buffer. After this method returns, the next byte to be read will have the value (byte)b.

Parameters:
b - the int value whose low-order byte is to be pushed back.
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - If there is not enough room in the pushback buffer for the byte.

unread sample code for java.io.PushbackInputStream.unread(byte[], int, int) definition code for java.io.PushbackInputStream.unread(byte[], int, int)

public void unread(byte[] b,
                   int off,
                   int len)
            throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Pushes back a portion of an array of bytes by copying it to the front of the pushback buffer. After this method returns, the next byte to be read will have the value b[off], the byte after that will have the value b[off+1], and so forth.

Parameters:
b - the byte array to push back.
off - the start offset of the data.
len - the number of bytes to push back.
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - If there is not enough room in the pushback buffer for the specified number of bytes.
Since:
JDK1.1

unread sample code for java.io.PushbackInputStream.unread(byte[]) definition code for java.io.PushbackInputStream.unread(byte[])

public void unread(byte[] b)
            throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Pushes back an array of bytes by copying it to the front of the pushback buffer. After this method returns, the next byte to be read will have the value b[0], the byte after that will have the value b[1], and so forth.

Parameters:
b - the byte array to push back
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - If there is not enough room in the pushback buffer for the specified number of bytes.
Since:
JDK1.1

available sample code for java.io.PushbackInputStream.available() definition code for java.io.PushbackInputStream.available()

public int available()
              throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Returns the number of bytes that can be read from this input stream without blocking. This method calls the available method of the underlying input stream; it returns that value plus the number of bytes that have been pushed back.

Overrides:
available sample code for java.io.FilterInputStream.available() definition code for java.io.FilterInputStream.available() in class FilterInputStream sample code for java.io.FilterInputStream definition code for java.io.FilterInputStream
Returns:
the number of bytes that can be read from the input stream without blocking.
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs.
See Also:
FilterInputStream.in sample code for java.io.FilterInputStream.in definition code for java.io.FilterInputStream.in , InputStream.available() sample code for java.io.InputStream.available() definition code for java.io.InputStream.available()

skip sample code for java.io.PushbackInputStream.skip(long) definition code for java.io.PushbackInputStream.skip(long)

public long skip(long n)
          throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Skips over and discards n bytes of data from this input stream. The skip method may, for a variety of reasons, end up skipping over some smaller number of bytes, possibly zero. If n is negative, no bytes are skipped.

The skip method of PushbackInputStream first skips over the bytes in the pushback buffer, if any. It then calls the skip method of the underlying input stream if more bytes need to be skipped. The actual number of bytes skipped is returned.

Overrides:
skip sample code for java.io.FilterInputStream.skip(long) definition code for java.io.FilterInputStream.skip(long) in class FilterInputStream sample code for java.io.FilterInputStream definition code for java.io.FilterInputStream
Parameters:
n - the number of bytes to be skipped.
Returns:
the actual number of bytes skipped.
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs.
Since:
1.2
See Also:
FilterInputStream.in sample code for java.io.FilterInputStream.in definition code for java.io.FilterInputStream.in , InputStream.skip(long n) sample code for java.io.InputStream.skip(long) definition code for java.io.InputStream.skip(long)

markSupported sample code for java.io.PushbackInputStream.markSupported() definition code for java.io.PushbackInputStream.markSupported()

public boolean markSupported()
Tests if this input stream supports the mark and reset methods, which it does not.

Overrides:
markSupported sample code for java.io.FilterInputStream.markSupported() definition code for java.io.FilterInputStream.markSupported() in class FilterInputStream sample code for java.io.FilterInputStream definition code for java.io.FilterInputStream
Returns:
false, since this class does not support the mark and reset methods.
See Also:
InputStream.mark(int) sample code for java.io.InputStream.mark(int) definition code for java.io.InputStream.mark(int) , InputStream.reset() sample code for java.io.InputStream.reset() definition code for java.io.InputStream.reset()

mark sample code for java.io.PushbackInputStream.mark(int) definition code for java.io.PushbackInputStream.mark(int)

public void mark(int readlimit)
Marks the current position in this input stream.

The mark method of PushbackInputStream does nothing.

Overrides:
mark sample code for java.io.FilterInputStream.mark(int) definition code for java.io.FilterInputStream.mark(int) in class FilterInputStream sample code for java.io.FilterInputStream definition code for java.io.FilterInputStream
Parameters:
readlimit - the maximum limit of bytes that can be read before the mark position becomes invalid.
See Also:
InputStream.reset() sample code for java.io.InputStream.reset() definition code for java.io.InputStream.reset()

reset sample code for java.io.PushbackInputStream.reset() definition code for java.io.PushbackInputStream.reset()

public void reset()
           throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Repositions this stream to the position at the time the mark method was last called on this input stream.

The method reset for class PushbackInputStream does nothing except throw an IOException.

Overrides:
reset sample code for java.io.FilterInputStream.reset() definition code for java.io.FilterInputStream.reset() in class FilterInputStream sample code for java.io.FilterInputStream definition code for java.io.FilterInputStream
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if this method is invoked.
See Also:
InputStream.mark(int) sample code for java.io.InputStream.mark(int) definition code for java.io.InputStream.mark(int) , IOException sample code for java.io.IOException definition code for java.io.IOException

close sample code for java.io.PushbackInputStream.close() definition code for java.io.PushbackInputStream.close()

public void close()
           throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Closes this input stream and releases any system resources associated with the stream.

Specified by:
close sample code for java.io.Closeable.close() definition code for java.io.Closeable.close() in interface Closeable sample code for java.io.Closeable definition code for java.io.Closeable
Overrides:
close sample code for java.io.FilterInputStream.close() definition code for java.io.FilterInputStream.close() in class FilterInputStream sample code for java.io.FilterInputStream definition code for java.io.FilterInputStream
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs.
See Also:
FilterInputStream.in sample code for java.io.FilterInputStream.in definition code for java.io.FilterInputStream.in