带有C#代码的XSLT

时间:2014-03-15 19:34:27

标签: xslt xslt-1.0 xslt-2.0 transformation

我必须使用XSLT转换一些XML。例如,XSLT命令如下所示:

<Transformation>
  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:user="urn:my-scripts">
   <msxsl:script language="C#" implements-prefix="user">
    <msxsl:using namespace="System.IO" />
    <![CDATA[
        #region Custom-Code
        public static string FileExists(string path)
        {
            FileInfo fi = new FileInfo(path);
            return (fi.Exists && (fi.Length >0)).ToString();
        }
        #endregion
    ]]>
   </msxsl:script>
   <xsl:output method="xml" indent="no" />
   <xsl:template match="@* | node()">
    <xsl:copy>
     <xsl:apply-templates select="@* | node()" />
    </xsl:copy>
   </xsl:template>
   <xsl:template match="Attachement">
    <xsl:choose>
     <xsl:when test="@mimetype='XPS'">
      <xsl:if test="(@type='MANUAL') and (@print='true') and (user:FileExists(File)='True')">
       <xsl:copy-of select="." />
      </xsl:if>
     </xsl:when>
     <xsl:otherwise>
      <xsl:copy-of select="." />
     </xsl:otherwise>
    </xsl:choose>
   </xsl:template>
  </xsl:stylesheet>
 </Transformation>

正如您所看到的,包含了一些C#代码。

现在我的问题: 我正在编写Java应用程序。当然,标准Java类无法处理C#代码。

我在微软找到了这个工具: http://www.microsoft.com/en-us/download/details.aspx?id=21714

我认为这应该可行但你需要MSXML 4.0来运行这个实用程序。 这对我自己来说不是问题,但是我正在为一家公司开发这个应用程序,如果有一个没有任何依赖关系的工具会很棒。 另一个问题是我在某个地方读过,这个实用程序也无法处理这个c#代码,但我不确定它们是否使用了它的版本1或2。

只需要XSLT 1.0转换,但如果可能,我会选择支持XSLT 2.0的工具

1 个答案:

答案 0 :(得分:0)

如果您使用Java,那么XSLT 1.0(Xalan,Saxon 6)和XSLT 2.0(Saxon 9)处理器允许您使用Java API,例如检查文件是否存在。例如,对于Saxan 6,请参阅http://saxon.sourceforge.net/saxon6.5.5/extensibility.html,对于Xalan,请参见http://xalan.apache.org/xalan-j/extensions.html#java-namespace;对于Saxon 9,请参阅http://www.saxonica.com/documentation/index.html#!extensibility/functions

我不明白为什么MSXML会有所帮助,它是一个用C / C ++完成的COM软件包,不支持调用C#也不支持Java,它有一个允许使用JScript或VBScript的扩展机制。