Reads a string from this stream using a length-prefixed UTF-8 format.
public String readUTF()
Returns the string value that was read.
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 string.
UTF encoded strings are generally more space efficient than Unicode strings, but they also take more time to process.
See Also writeUTF