从xml中提取(模式)标签

时间:2019-11-02 23:41:19

标签: xml xsd schema


我有一个xml文件,其中包含架构信息。为了验证xml,我想提取架构信息。如何通过phyton脚本或xslt转换实现此目的?验证将在nifi xmlValidator处理器中进行。

我尝试了xsl转换,但问题是xsd前缀。

    <?xml version="1.0" encoding="UTF-8"?>
    <root xmlns:xsd="http://www.w3.org/2001/XMLSchema"   xmlns:od="urn:schemas-microsoft-com:officedata">
    <xsd:schema>
    <xsd:element name="dataroot">
    <xsd:complexType>
    <xsd:choice maxOccurs="unbounded">
      <xsd:element ref="AE"></xsd:element> 
   ...
    </xsd:schema> 
    <dataroot>
   ...</dataroot>
   </root>

2 个答案:

答案 0 :(得分:0)

您可以使用以下XSLT-1.0样式表从您的XSD中提取XSD部分。首先,它与/root元素匹配,然后使用自定义身份模板 复制所有xsd:...个子代:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xsd="http://www.w3.org/2001/XMLSchema" version="1.0"> 
    <xsl:output method="xml" indent="yes" />
    <xsl:strip-space elements="*" />

    <!-- Identity template for 'xsd' -->
    <xsl:template match="@*|node()" mode="xsd">
        <xsl:copy>
            <xsl:apply-templates select="@* | node()" mode="xsd" />
        </xsl:copy>
    </xsl:template>  

    <xsl:template match="/root/xsd:schema">
        <xsl:copy>
            <xsl:apply-templates select="@* | node()" mode="xsd" />
        </xsl:copy>
    </xsl:template>         

    <xsl:template match="text()" />
</xsl:stylesheet>

结果是:

<?xml version="1.0"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <xsd:element name="dataroot">
    <xsd:complexType>
      <xsd:choice maxOccurs="unbounded"><xsd:element ref="AE"/>

                    ...
                </xsd:choice>
    </xsd:complexType>
  </xsd:element>
</xsd:schema>

我忽略了...,因为它们可能不属于XML。

答案 1 :(得分:0)

以下XSLT 2.0样式表将文档分为架构文档和实例文档。

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xsd="http://www.w3.org/2001/XMLSchema" version="2.0"> 

    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@* | node()" />
        </xsl:copy>
    </xsl:template>  

    <xsl:template match="xsd:schema">
        <xsl:result-document href="schema.xsd">
            <xsl:copy-of select="." />
        </xsl:result-document>
    </xsl:template>  

</xsl:stylesheet>