我正在使用Java的内置XML转换器来获取DOM文档并打印出生成的XML。问题是尽管明确设置了参数“indent”,但它根本没有缩进文本。
示例代码
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()));
}
}
结果
<?xml version="1.0" encoding="UTF-8" standalone="no"?><a><b/></a>
期望的结果
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<a>
<b/>
</a>
思想?
答案 0 :(得分:205)
您需要启用'INDENT'并设置变压器的缩进量:
t.setOutputProperty(OutputKeys.INDENT, "yes");
t.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "2");
更新
参考:How to strip whitespace-only text nodes from a DOM before serialization?
(非常感谢所有成员,特别是@ marc-novakowski,@ james-murty和@saad):
答案 1 :(得分:19)
这些建议的解决方案都不适合我。所以我继续寻找替代解决方案,最终成为前面提到的第二步和第三步的混合。
//(1)
TransformerFactory tf = TransformerFactory.newInstance();
tf.setAttribute("indent-number", new Integer(2));
//(2)
Transformer t = tf.newTransformer();
t.setOutputProperty(OutputKeys.INDENT, "yes");
//(3)
t.transform(new DOMSource(doc),
new StreamResult(new OutputStreamWriter(out, "utf-8"));
你必须做(3)解决一个“错误”的行为 xml处理代码。
来源:johnnymac75 @ http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6296446
(如果我错误地引用了我的来源,请告诉我)
答案 2 :(得分:14)
以下代码适用于Java 7.我在变换器(而不是变压器工厂)上设置了缩进(是)和缩进量(2)以使其正常工作。
TransformerFactory tf = TransformerFactory.newInstance();
Transformer t = tf.newTransformer();
t.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "2");
t.setOutputProperty(OutputKeys.INDENT, "yes");
t.transform(source, result);
@ mabac设置该属性的解决方案并不适合我,但@ lapo的评论证明是有帮助的。
答案 3 :(得分:8)
import com.sun.org.apache.xml.internal.serializer.OutputPropertiesFactory
transformer.setOutputProperty(OutputPropertiesFactory.S_KEY_INDENT_AMOUNT, "2");
答案 4 :(得分:4)
如果您想要缩进,则必须将其指定为TransformerFactory
。
TransformerFactory tf = TransformerFactory.newInstance();
tf.setAttribute("indent-number", new Integer(2));
Transformer t = tf.newTransformer();
答案 5 :(得分:4)
我使用Xerces(Apache)库而不是乱用Transformer。添加库后,请添加以下代码。
OutputFormat format = new OutputFormat(document);
format.setLineWidth(65);
format.setIndenting(true);
format.setIndent(2);
Writer outxml = new FileWriter(new File("out.xml"));
XMLSerializer serializer = new XMLSerializer(outxml, format);
serializer.serialize(document);
答案 6 :(得分:2)
我添加DOCTYPE_PUBLIC
工作:
transformer.setOutputProperty(OutputKeys.INDENT, "yes");
transformer.setOutputProperty(OutputKeys.DOCTYPE_PUBLIC,"yes");
transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "10");