[rfc][icedtea-web] Console Output Encoding Fix
Jiri Vanek
jvanek at redhat.com
Tue Jul 15 14:34:59 UTC 2014
On 07/15/2014 04:10 PM, Jie Kang wrote:
> Hello,
>
> This patch resolves the bug here http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=1858
>
> Characters such as 'ó' were not appearing in the Java Console due to the implementation of TeeOutputStream appending bytes to a StringBuffer in a byte-by-byte fashion ignoring the fact that the encodings involve multi-byte characters.
>
> Also, as far as I can tell the StringBuffer is not used by multiple threads and has been replaced by StringBuilder (see http://docs.oracle.com/javase/7/docs/api/java/lang/StringBuilder.html)
>
>
> Regards,
>
Also please, push the cosmetic changes
private void appendChar(int b) {
- if ( b <= 0 || b == '\n'){
+ if ( b <= 0 || b == '\n'){
flushLog();
} else {
- string.append((char)b);
+ string.append((char) b);
}
}
as separate changeset. You may also remove all unusde/same package imports from this class
meanwhile. It will be ok for head and 1.5.
J.
More information about the distro-pkg-dev
mailing list