count
number of bytes in this stream. Subsequent read()
's will not return these bytes unless reset()
is used.
@param count the number of bytes to skip.
@return the number of bytes actually skipped.
@throws IOException If a problem occurs reading from this stream.
skipBytes
method of DataInput
. Bytes for this operation are read from the contained input stream. @param n the number of bytes to be skipped. @return the actual number of bytes skipped. @exception IOException if the contained input stream does not supportseek, or the stream has been closed and the contained input stream does not support reading after close, or another I/O error occurs.
length
bytes of primitive data from the receiver. It should not be used to skip bytes at any arbitrary position; just when reading primitive data types (ints, chars, etc).
@param length How many bytes to skip
@return number of bytes skipped
@throws IOException If any IO problem occurred when trying to skip the bytes.
count
number of bytes in this stream. Subsequent read()
's will not return these bytes unless reset()
is used.
@param count the number of bytes to skip.
@return the number of bytes actually skipped.
@throws IOException If the stream is already closed or another IOException occurs.
int
containing the number of bytes tobe skipped.
@return an int
representing the number of bytes skipped.
@exception IOException if an I/O error occurs.
n
bytes of input. This method blocks until all the bytes are skipped, the end of the stream is detected, or an exception is thrown.
@param n the number of bytes to be skipped.
@return the number of bytes skipped, which is always n
.
@throws EOFException if this file reaches the end before skippingall the bytes.
@throws IOException if an I/O error occurs.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|