PrintStream and Internationalization, (2nd try)
I wonder howPrintStream, which deals with bytes, can handle Unicode which requires at least a full Javachar. The stream used for screen output by the classSystem -System.out - is aPrintStream.
The JavaDoc of PrintStream says: "All characters printed by a PrintStream are converted into bytes using the platform's default character encoding."
How does this work when the character set contains more than 256 characters - like Hangul or Chinese?
Renwu

