用 Java 格式化生成的 XML

发布于 2024-11-26 05:25:50 字数 531 浏览 2 评论 0原文

我有一个使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

望她远 2024-12-03 05:25:50

我建议使用 XSLT。他们在此处提供了一个示例。

I would suggest using XSLT. They have an example here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文