XML排序/格式化工具
发布时间:2020-12-16 07:42:31 所属栏目:百科 来源:网络整理
导读:有没有任何可以(漂亮打印)格式化 XML文件以及对其元素和属性进行排序的工具? 我正在寻找一个类似的实用程序,并没有真正找到我正在寻找,所以我只是几乎不写一个.它非常简单(并且不包括节点排序中的属性),但可以工作. 也许这对他人有用..这是在GitHub. 这里有
有没有任何可以(漂亮打印)格式化
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> (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |