@Deprecated
public final String readLine () throws IOException

Deprecated: This method does not properly convert bytes to characters. As of JDK 1.1, the preferred way to read lines of text is via the BufferedReader.readLine() method. Programs that use the DataInputStream class to read lines can be converted to use the BufferedReader class by replacing code of the form:

     DataInputStream d = new DataInputStream(in);
 
with:
     BufferedReader d
          = new BufferedReader(new InputStreamReader(in));
 

Implementing: java.io.DataInput

See the general contract of the readLine method of DataInput.

Bytes for this operation are read from the contained input stream.

Returns:  the next line of text from this input stream.

Exceptions:
IOException    if an I/O error occurs.

See also:
java.io.BufferedReader.readLine(), java.io.FilterInputStream.in