java.io.Reader. It is able to buffer, and translate from an UTF8 input stream to Unicode characters. Method readLine() can return a single line of material as a Java string. For best performance, call new UTF8InputStreamReader(in, 2048) instead of new BufferedReader(new InputStreamReader(new BufferedInputStream(in, 2048), "UTF8" ), 1)
| |
| |