XML排序/格式化工具

前端之家收集整理的这篇文章主要介绍了XML排序/格式化工具前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_502_0@ 有没有任何可以(漂亮打印)格式化 XML文件以及对其元素和属性进行排序的工具?
我正在寻找一个类似的实用程序,并没有真正找到我正在寻找,所以我只是几乎不写一个.它非常简单(并且不包括节点排序中的属性),但可以工作.

也许这对他人有用..这是在GitHub.

这里有一点从GitHub页面

USAGE: sortxml.exe [options] infile [outfile]

  infile      The name of the file to sort,etc.
  outfile     The name of the file to save the output to.
              If this is omitted,then the output is written to stdout.

OPTIONS:

  --pretty    Ignores the input formatting and makes the output look nice.
  --sort      Sort both the nodes and attributes.
  --sortnode  Sort the nodes.
  --sortattr  Sort the attributes.

(prefix an option with ! to turn it off.)

默认是输出漂亮和排序的节点和属性.这是一个例子:

> type sample.xml
<?xml version="1.0" encoding="utf-8" ?><root><node value="one" attr="name"/></root>

> sortxml.exe sample.xml
<?xml version="1.0" encoding="utf-8"?>
<root>
  <node attr="name" value="one" />
</root>
原文链接:https://www.f2er.com/xml/292225.html

猜你在找的XML相关文章