用 Java 格式化生成的 XML
我有一个使用 Transformer 生成的 xml 来进行实际写入(写入 StreamResult)。我试图让它生成得更好,更易于人类阅读。我已经插入了下面的代码,它为我做了缩进。
transformer.setOutputProperty(OutputKeys.INDENT, "yes");
但是,在这种情况下,我在元素中有属性,例如:
<ElementA name="foo" description="bar" value="xyz"></ElementA>
如何使其看起来像下面的属性,并按照我使用 elementA.setAttribute("name", " 在代码中设置属性的顺序列出属性富”);目前它根据字母顺序重新排序:
<ElementA name="foo"
description="bar"
value="xyz">
</ElementA>
I have a generated xml using the Transformer to do the actual writing (to a StreamResult). I am trying to have it nicely generated that is more human-readable. I have inserted the code below and it does the indentation for me.
transformer.setOutputProperty(OutputKeys.INDENT, "yes");
However, in such cases where I have attributes in a element like:
<ElementA name="foo" description="bar" value="xyz"></ElementA>
How can I make it to look like the one below and having the attribute listed in the order that I set them in the code using elementA.setAttribute("name", "foo"); Currently it reorders itself according to alphabetical order:
<ElementA name="foo"
description="bar"
value="xyz">
</ElementA>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用 XSLT。他们在此处提供了一个示例。
I would suggest using XSLT. They have an example here.