readStringOfCharLength

 

public String readStringOfCharLength(int numberOfChars) 
              throws IOException, EOFException;

Reads a string in the codeset identified by characterSet and converts it into Unicode.

Parameters

  • numberOfChars - The number of characters to read (which might differ from the number of bytes according to the codeset, because some codesets use more than one byte per character).

Returns

  • the string.

Exceptions

  • IOException - if there is a problem with IO.


uj13940_