我正在寻找一个类似的实用程序,并没有真正找到我正在寻找,所以我只是几乎不写一个.它非常简单(并且不包括节点排序中的属性),但可以工作.
原文链接:https://www.f2er.com/xml/292225.html也许这对他人有用..这是在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>