Read from UTF8 stream until end of line, and return the content as a Java String. A line is considered to be terminated by any one of a line feed ('\n'), a carriage return ('\r'), or a carriage return followed by a linefeed.
@return A String containing the contents of the line, not including anyline-termination characters, or null if the end of the stream has been reached.
@throws IOException if an I/O error occurs.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.