IDataStream.readInts

Overview | Methods | This Package | All Packages

IDataStream.readInts

Reads the specified number of integers from this stream into an integer array.

Syntax

public int[] readInts( int count )

public void readInts( int[] buffer, int index, int count )

Parameters

count

The number of integers to read.

buffer

The array to read data into.

index

The starting index in the array.

Return Value

Returns an integer array containing the data that was read.

Exceptions

IOException thrown if an I/O error occurs or if the stream does not support reading.

EOFException thrown if the end of the stream is reached while reading the data.

Remarks

The current position is advanced by count * 4 bytes.

See Also   writeInts