Mark Diekhans wrote: > The IANA name is `windows-1251'; try `Cp1251', which is probably the > alias java is using. (Cp == Code page).
I stand corrected. Thank you. For the official list, check out: http://www.isi.edu/in-notes/iana/assignments/character-sets In the meantime, if you want to use Java encoding names, then you should turn on that feature in the parser. Here's an example: parser.setFeature("http://apache.org/xml/features/allow-java-encodings", true); -- Andy Clark * IBM, TRL - Japan * [EMAIL PROTECTED]
