格式 xml,漂亮的打印
我知道有两种“漂亮打印”或格式化 xml 的方法:
还有哪些其他免费(如啤酒)格式化程序? (除了使用javascript)
I know of two ways to "pretty print", or format, xml:
what other free (as in beer) formatters are there? (aside from using javascript)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
那么,您链接到的身份转换可移植到任何 XSLT 处理器(Saxon、msxml 等)。
此外,您可以查看
xmllint
,它是 LibXML2 工具包的一部分。--format
选项允许您漂亮地打印输入。 XMLStarlet 中也存在类似的功能(它在底层使用 LibXML2 iirc)。Well, the identity transform you linked to is portable to any XSLT processor (Saxon, msxml, etc).
Additionally, you could look at
xmllint
which is part of the LibXML2 toolkit. The--format
option allows you to pretty print the input. Similar functionality exists in XMLStarlet (which uses LibXML2 under the hood iirc).xmlstarlet fo
是我用于漂亮打印的工具。 Xmlstarlet 有许多选项:优秀的 XML 工程师应该能够使用 xmlstarlet。
xmlstarlet fo
is what I use for pretty printing. Xmlstarlet has a number of options:A good XML engineer should be able to wield xmlstarlet.
您可以使用 http://prettydiff.com/?m=beautify
不幸的是,它是用 JavaScript 编写的,但它是一个完整的应用程序,因此您永远不必知道这一点。只需知道您可以从浏览器内部运行,无需下载或安装任何内容。
You can use http://prettydiff.com/?m=beautify
Unfortunately, it is written in JavaScript, but it is a complete application so you never have to know that. Just know that you can run from inside your browser without downloading or installing anything.
我喜欢用于 XML 操作的 java 库 XOM。它有一个很好的 漂亮打印机这提供了对输出的很多控制。
I like the java library XOM for XML manipulation. It has a nice Pretty Printer that provides a lot of control over the output.
在 python 中使用 libxml2 时:
编辑:libxml2 中似乎存在一些错误...使用标签 libxml2.XML_SAVE_NO_EMPTY 而不是 libxml2.XML_SAVE_FORMAT 完成漂亮的打印
When using libxml2 in python:
Edit: It looks like there is some bug in libxml2 ...pretty printing is done with the tag libxml2.XML_SAVE_NO_EMPTY instead of libxml2.XML_SAVE_FORMAT