Manisha Sathe wrote:
I am using DOM to generate xml file. And the chinese character string is a hardcoded one
i.e. when i am setting value to xml node i am passing it string as "∆" but DOM automatically converts this string and store into xml file as "&#x2206",

Use Java Unicode escapes (like '\u2206') for non-ASCII/characters in Java strings. Use XML characcter references (like '∆') *only* in XML files.

J.Pietschmann

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to