对于文件夹中的每个文件,包括XML

时间:2013-10-17 20:14:43

标签: c# xml vb.net xslt

我有一个冗长的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>

我意识到我可以使用基本的File和String函数来完成这项工作,但是想知道是否有一种使用XSL / XML的本机方法来实现它。

2 个答案:

答案 0 :(得分: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()));
}

答案 1 :(得分: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>