我有一个输入XML文档:
输入XML
<?xml version="1.0" encoding="UTF-8"?> <allNames id="ID_0" b:type="a:UnstructuredName"> <typeName>KnownBy</typeName> <startDate>2001-01-01-05:00</startDate> <fullName>ABCD 004 COMPANY INC</fullName> </allNames>
我需要应用XSLT将其转换为
输出XML
<?xml version="1.0" encoding="UTF-8"?> <allNames b:type="a:UnstructuredName" id="ID_0"> <typeName>KnownBy</typeName> <startDate>2001-01-01-05:00</startDate> <fullName>ABCD 004 COMPANY INC</fullName> </allNames>
唯一的变化是allNames元素中的属性排序更改.我查了另一篇文章并编写了命令属性的XSLT,但我不知道如何让整个过程发挥作用.
XSLT
<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2005/xpath-functions"> <xsl:output method="xml" indent="yes"/> <xsl:variable name="attributes" select="document('mytest.xml')//attribute"/> <xsl:template match="@* | node()"> <xsl:copy> <xsl:apply-templates select="@* | node()"/> </xsl:copy> </xsl:template> <xsl:template match="*"> <xsl:variable name="self" select="."/> <xsl:for-each select="$attributes"> <xsl:apply-templates select="$self/@*[name()=current()]"/> </xsl:for-each> </xsl:template> </xsl:stylesheet>
mytest.xml
<?xml version="1.0" encoding="UTF-8"?> <attributes> <attribute>b:type</attribute> <attribute>id</attribute> </attributes>
Note that the order of attribute specifications in a start-tag or
empty-element tag is not significant.
W3C建议书中的属性排序
通常,XML建议都会认为属性排序无关紧要,但如果您的应用程序需要属性排序,请参阅XML Normalization Recommendation或Canonical XML Recommendation中的section on attribute processing.但是,您必须在标准XSLT之外执行此操作.
属性排序实现黑客
如果您认识到对XML属性强加排序本质上存在缺陷,则与互操作性相悖,并且完全不在XML建议书和使用XML的既定实践之间,但您仍然必须控制属性排序,这里有一些方法实施这种控制……
正如Michael Kay在这个问题的另一个答案中提到的那样,Saxon 9.5(PE或更高版本)具有XSLT扩展,可以控制序列化程序的属性排序.有关详细信息,请参见saxon:attribute-order
.
您可以对标准XSLT生成的XML进行后处理.在XML库级别下运行,您当然可以通过字符或字符串级别处理获得对属性排序的完全词法控制.
您可以依赖XML库提供的排序的实现细节.例如,某些库将根据属性的名称按字母顺序写出属性,或者保留提供给它们的属性顺序.显然,依赖实现细节本质上是不可靠的.也就是说,例如,XMLStreamWriter.writeAttribute
的实现可能会继续遵守将来给予它们的属性顺序.
最后重申对XML属性排序的所有问题的真正答案是在关闭之前按顺序…
将XML属性视为具有排序与XML Recommendation相反,应该避免.