如何获取XSL文件目录的绝对路径?

时间:2014-09-15 04:13:33

标签: c# xml xslt xsd filepath

我的Schema.xsd文件与.xsl文件位于同一目录中。在.xsl文件中,我想在生成的输出中生成Schema.xsl的链接。生成的输出位于不同的目录中。目前我这样做:

   <xsl:template match="/">
     <root version="1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xsi:noNamespaceSchemaLocation="../../../Schema.xsd">
     <!-- . . . -->

但是,这会强制生成的输出位于Schema.xsd目录下的3个级别。我想在输出中生成架构的绝对路径,因此输出可以位于任何位置。

更新。我在.NET Framework 4.5中使用XSLT 1.0(XslCompiledTransform实现)。

2 个答案:

答案 0 :(得分:2)

XSLT 2.0解决方案

使用XPath 2.0函数resolve-uri()

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="xml" indent="yes"
              omit-xml-declaration="yes"
              encoding="UTF-8"/>
  <xsl:template match="/">
    <root version="1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:noNamespaceSchemaLocation="{concat(resolve-uri('.'), 'Schema.xsd')}">
    </root>
  </xsl:template>

</xsl:stylesheet>

收益,没有参数传递,无论输入XML如何:

<root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      version="1.0"
      xsi:noNamespaceSchemaLocation="file:/c:/path/to/XSLT/file/Schema.xsd"/>

答案 1 :(得分:1)

这是如何做到的草图(另见Passing parameters to XSLT Stylesheet via .NET)。

在C#代码中,您需要定义和使用参数列表:

XsltArgumentList argsList = new XsltArgumentList();
argsList.AddParam("SchemaLocation","","<SOME_PATH_TO_XSD_FILE>");

XslCompiledTransform transform = new XslCompiledTransform();
transform.Load("<SOME_PATH_TO_XSLT_FILE>");

using (StreamWriter sw = new StreamWriter("<SOME_PATH_TO_OUTPUT_XML>"))
{
    transform.Transform("<SOME_PATH_TO_INPUT_XML>", argsList, sw);
} 

您的XSLT可以像这样增强:

...
<xsl:param name="SchemaLocation"/> <!-- this more or less at the top of your XSLT! -->
...

<xsl:template match="/">
   <root version="1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:noNamespaceSchemaLocation="{$SchemaLocation}">
   ...
   ...
</xsl:template>
....