Sto usando il trasformatore XML integrato di Java per prendere un documento DOM e stampare l'XML risultante. Il problema è che non fa affatto rientrare il testo nonostante abbia impostato esplicitamente il parametro "indent".
codice di esempio
public class TestXML {
public static void main(String args[]) throws Exception {
ByteArrayOutputStream s;
Document d = DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument();
Transformer t = TransformerFactory.newInstance().newTransformer();
Element a,b;
a = d.createElement("a");
b = d.createElement("b");
a.appendChild(b);
d.appendChild(a);
t.setParameter(OutputKeys.INDENT, "yes");
s = new ByteArrayOutputStream();
t.transform(new DOMSource(d),new StreamResult(s));
System.out.println(new String(s.toByteArray()));
}
}
risultato
<?xml version="1.0" encoding="UTF-8" standalone="no"?><a><b/></a>
risultato desiderato
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<a>
<b/>
</a>
Pensieri?
INDENT=yes
ho anche dovuto aggiungere questo:t.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "2");