0

我有一个冗长的 XML,如下所示:

MainXML.xml:

<OpenTag>
    <SubTag>Value 1</SubTag>
    <SubTag>Value 2</SubTag>
    <SubTag>Value 3</SubTag>
    <SubTag>Value 4</SubTag>
</OpenTag>

除了这SubTag是一个包含大量数据的更复杂的重复结构。我不能以某种方式这样做吗?

SubXML1.xml:

<SubTag>Value 1</SubTag>

SubXML2.xml:

<SubTag>Value 2</SubTag>

SubXML3.xml:

<SubTag>Value 3</SubTag>

SubXML4.xml:

<SubTag>Value 4</SubTag>

MainXML.xml:

<OpenTag>
    ... For Each XML File in the Sub-XML Folder, stick it here.
</OpenTag>

我意识到我可以使用基本的文件和字符串函数来做到这一点,但想知道是否有使用 XSL/XML 的本地方式来做到这一点。

4

2 回答 2

1

如果您对 LINQ to XML 没问题,这里有一个工作代码:

public static XDocument AggregateMultipleXmlFilesIntoASingleOne(string parentFolderPath, string fileNamePrefix)
{
    return new XDocument(
        new XElement("OpenTag", 
            Directory.GetFiles(parentFolderPath)
                .Where(file => Path.GetFileName(file).StartsWith(fileNamePrefix))
                .Select(XDocument.Load)
                .Select(doc => new XElement(doc.Root))
                .ToArray()));
}
于 2013-10-17T20:46:32.483 回答
0

不确定这是否正是您所追求的,但它似乎工作正常。它依赖于 XSLT 2.0,希望你可以使用它。您还需要为 SubXML 文件准备一个文件夹:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">

<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>    

<xsl:template match="/">
    <xsl:for-each select="//SubTag">
        <xsl:result-document href="folder/SubXML{position()}.xml" method="xml">
            <xsl:copy>
                <xsl:apply-templates select="@*|node()"/>
            </xsl:copy>
        </xsl:result-document>
    </xsl:for-each>
    <xsl:apply-templates />
</xsl:template>

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

</xsl:stylesheet>
于 2013-10-17T21:35:09.863 回答