XMLSerializer does not produce XML 1.1 header
---------------------------------------------
Key: UIMA-1859
URL: https://issues.apache.org/jira/browse/UIMA-1859
Project: UIMA
Issue Type: Bug
Components: Core Java Framework
Affects Versions: 2.3
Reporter: Adam Lally
Assignee: Adam Lally
If you create an XMLSerializer and set its output stream, and then call
sax2xml.setOutputProperty(OutputKeys.VERSION, "1.1"), the output XML file will
have an <?xml version="1.0"...> header instead of the desired version="1.1".
A workaround is to call sax2xml.setOutputProperty(OutputKeys.VERSION, "1.1")
before setting the output stream.
Test case:
ByteArrayOutputStream baos = new ByteArrayOutputStream();
XMLSerializer sax2xml = new XMLSerializer(baos, false);
sax2xml.setOutputProperty(OutputKeys.VERSION, "1.1");
ContentHandler ch = sax2xml.getContentHandler();
ch.startDocument();
ch.startElement("","foo","foo", new AttributesImpl());
ch.endElement("", "foo", "foo");
ch.endDocument();
String xmlStr = new String(baos.toByteArray(), "UTF-8");
assertEquals("<?xml version=\"1.1\" encoding=\"UTF-8\"?><foo/>", xmlStr);
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.