我需要将多个xml文件合并到一个文件中。我通过xsl转换实现了这一点。我的xslt文件是
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt"
exclude-result-prefixes="msxsl"
xmlns:Utils="Utils:Helper">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()" />
</xsl:copy>
</xsl:template>
<xsl:template match="assemblies">
<xsl:copy>
<xsl:apply-templates select="*"/>
<xsl:apply-templates select="document('AdminService.xml')/reflection/assemblies/*" />
<xsl:apply-templates select="document('Helpers.xml')/reflection/assemblies/*" />
<!--<xsl:value-of select="Utils:GetFiles()"/>-->
</xsl:copy>
</xsl:template>
<xsl:template match="apis">
<xsl:copy>
<xsl:apply-templates select="*"/>
<xsl:apply-templates select="document('AdminService.xml')/reflection/apis/*" />
<xsl:apply-templates select="document('Helpers.xml')/reflection/assemblies/*" />
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
我的C#功能是
var xslt = new XslCompiledTransform();
xslt.Load("XmlMerger.xslt", new XsltSettings { EnableDocumentFunction = true, EnableScript = true}, null);
using (var writer = File.CreateText("XmlDocs\\result.xml"))
{
xslt.Transform(@"EmployeeService.xml", arguments, writer);
}
在这三个xml文件中,EmployeeService,AdminService,Helpers被合并到一个文件results.xml中。这对我来说很好。
现在调用xml文件是静态的
<xsl:apply-templates select="document('AdminService.xml')/reflection/assemblies/*" />
<xsl:apply-templates select="document('Helpers.xml')/reflection/assemblies/*" />.
我需要在目录中包含所有xml文件。目前我尝试通过传递像
这样的字符串来调用此xslt文件中的C#函数 public string GetFiles()
{
return "<xsl:apply-templates select=\"document(\'Helpers.xml\')/reflection/assemblies/*\" />";
//return "Helpers.xml";
}
注意:例如我只包含一个文件。在这里,我试图构建该字符串将其传递给xslt文件
<xsl:value-of select="Utils:GetFiles()"/>
但是在结果中它以明文形式出现。如何逃避这个并告诉它一个模板或如何动态地包含目录中的所有文件?
答案 0 :(得分:2)
如果要使用XslCompiledTransform
在XSLT中处理XML文档,则需要从C#代码传入XPathNavigator
,如果要处理XML文档的目录,则需要传入XPathNavigator
个对象的数组。所以你可以写一个方法
public XPathNavigator[] GetDocuments(string directory)
{
return Directory.EnumerateFiles(directory, "*.xml").Select(file => new XPathDocument(file).CreateNavigator()).ToArray();
}
在示例类MyHelperClass
中,在C#代码中实例化该类,并将其作为Transform
调用的扩展名传递:
XslCompiledTransform xsltProc = new XslCompiledTransform();
xsltProc.Load("XSLTFile1.xslt");
XsltArgumentList xsltArgs = new XsltArgumentList();
xsltArgs.AddExtensionObject("http://example.com/mf", new MyHelperClass());
xsltProc.Transform("input.xml", xsltArgs, Console.Out);
然后在您的XSLT中使用例如
<xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt"
xmlns:mf="http://example.com/mf"
exclude-result-prefixes="msxsl mf"
>
然后您可以处理,例如
<xsl:apply-templates select="mf:GetDocuments('someDirectoryName')/root/foo/bar"/>
处理目录中XML文档中找到的所有bar
个元素。