Override declared encoding during unmarshalling with JAXB

yozh picture yozh · Sep 7, 2011 · Viewed 26k times · Source

I have an XML file with its encoding set within it: <?xml version="1.0" encoding="ISO-8859-15"?> but really file is encoded in UTF-8. Is there a way to override encoding declared in XML file when unmarshalling it with JAXB?

Answer

bdoughan picture bdoughan · Sep 7, 2011

You can unmarshal the content from a java.io.Reader in order to supply the actual encoding:

Unmarshaller unmarshaller = jc.createUnmarshaller();
InputStream inputStream = new FileInputStream("input.xml");
Reader reader = new InputStreamReader(inputStream, "UTF-8");
try {
    Address address = (Address) unmarshaller.unmarshal(reader);
} finally  {
    reader.close();
}

For More Information