获取要在输出中使用的附件信息,如文件大小



假设您可以使用Saxon 9的商业版本(即PE或EE)或任何其他支持EXPath文件模块的XSLT 2.0处理器,您可以如下使用它:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:file="http://expath.org/ns/file"
    exclude-result-prefixes="xs file"
    version="2.0">
    <xsl:template match="@* | node()">
        <xsl:copy>
            <xsl:apply-templates select="@* | node()"/>
        </xsl:copy>
    </xsl:template>
    <xsl:template match="a/@href[file:exists(resolve-uri(., base-uri()))]">
        <xsl:copy/>
        <xsl:attribute name="size" select="concat(file:size(resolve-uri(., base-uri())) idiv 1024, 'KB')"/>
    </xsl:template>
</xsl:stylesheet>

使用Saxon转换

<root>
    <a href="test2016082601.pdf">doc</a>
</root>

<root>
    <a href="test2016082601.pdf" size="141KB">doc</a>
</root>

相关内容

  • 没有找到相关文章

最新更新