I am trying to create XML from Java and am having problems with indenting. In the following code you can see OutputKeys.INDENT set to yes...
//set up a transformer
TransformerFactory transfac = TransformerFactory.newInstance();
Transformer trans = transfac.newTransformer();
trans.setOutputProperty(OutputKeys.OMIT_XML_DECLARATION, "yes");
trans.setOutputProperty(OutputKeys.INDENT, "yes");
//create string from xml tree
StringWriter sw = new StringWriter();
StreamResult result = new StreamResult(sw);
DOMSource source = new DOMSource(doc);
trans.transform(source, result);
String xmlString = sw.toString();
//print xml
System.out.println(xmlString);
but, the output is:
<dataset id="1">
<path></path>
<session id="1">
<method>
<timestamp>a timestamp</timestamp>
<signiture>
<classPath></classPath>
<name>methodName</name>
<declarationType>String</declarationType>
<parameters>
<parameter>String</parameter>
<parameter>int</parameter>
</parameters>
</signiture>
<arguments>
<argument>SomeValue</argument>
<argument>AnotherValue</argument>
</arguments>
<return>ReturnValue</return>
</method>
</session>
</dataset>