DataStream.readChars

Overview | Methods | This Package | All Packages

DataStream.readChars

Reads the specified number of characters from this stream.

Syntax

public char[] readChars( int count )

public void readChars( char[] buffer, int index, int count )

Parameters

buffer

The array to read data into.

index

The starting index in the array.

count

The number of characters to read.

Return Value

Returns an array of characters containing the data that was read.

Remarks

This method implements the IDataStream.readChars method. This method validates the arguments and then calls the readCore method to read the data.