XSLT with C# code



我必须用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的工具

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

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

相关内容

  • 没有找到相关文章

最新更新