You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by Janez Jere <jj...@void.si> on 2000/05/05 12:44:20 UTC

codepage bug

Hi,

I found a bug pattern in org/apache/xalan/xpath/xml/FormatterToXML.java.
All CodePage names are not properly written, because sun jdk expects
code page in "Cp"+codepage format ('p' must be lower case).


you can verify it with folowing code, second line will fail.

new OutputStreamWriter( System.out, "Cp1250" );
new OutputStreamWriter( System.out, "CP1250" );


best regards,

JJ