XMLStreamWriter#writeCharacters(...)
The writeCharacters(...) method is used to escape characters such as &, <, >, and ". (from http://download.oracle.com/docs/cd/E17802_01/webservices/webservices/docs/2.0/tutorial/doc/StAX4.html)
but when I write some Chinese, Japanese characters, and the output XML file is not encoded in "UTF-8", but is "GBK" or "Shift-JIS". The Chinese, Japanese characters is also escaped, just like
"汉语, English, にほんご" ---> "汉语, English, にほんご"
Is there anyway to resolve it?
public static void main(String[] args) throws Exception {
// GBK
System.out.println("JVM default charset = " + Charset.defaultCharset());
String s = "汉语, English, にほんご";
XMLOutputFactory output = XMLOutputFactory.newInstance();
output.setProperty(XMLOutputFactory.IS_REPAIRING_NAMESPACES, false);
OutputStream out = new FileOutputStream("C:/aa.txt");
XMLStreamWriter writer = output.createXMLStreamWriter(out, "UTF-8");
// When output encoding is "UTF-8", result is something like:
// <?xml version='1.0' encoding='UTF-8'?><a>汉语, English, にほんご</a>
// When output encoding is "GBK", result is something like:
// <?xml version='1.0' encoding='GBK'?><a>汉语, English, にほんご</a>
writer.writeStartDocument();
writer.setDefaultNamespace("http://c");
writer.writeStartElement("http://c", "a");
writer.writeCharacters(s);
writer.writeEndElement();
writer.flush();
}