gpt4 book ai didi

xslt调用java实例方法

转载 作者:行者123 更新时间:2023-12-02 11:41:47 25 4
gpt4 key购买 nike

我的 xsl 如下所示:

<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:SimpleDateFormat="java.text.SimpleDateFormat"
xmlns:Date="java.util.Date" exclude-result-prefixes="SimpleDateFormat Date">

<xsl:variable name="s" select="SimpleDateFormat:new(MMM/dd/yyyy-HH/mm/ss/SSS)"/>
<xsl:variable name="date" select="Date:new(number($beginTime))"/>

那么现在如何调用实例's'的方法format(Date date)呢?

如果我使用<xsl:value-of select="s:format($date)" /> ,那么错误是:前缀必须解析为命名空间:s。

但是如果我添加这样的命名空间:xmlns:s="java.text.SimpleDateFormat"<xsl:value-of select="s:format($date)" />将返回默认格式,而不是指定格式。

那么如何获取指定的格式,例如 MM/dd/yyyy-HH/mm/ss/SSS ?

最佳答案

您需要使用的命名空间是引用对象类型的命名空间,并将变量本身作为调用中的第一个参数传递:

顺便说一句:您需要将格式参数放在撇号之间:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:SimpleDateFormat="java.text.SimpleDateFormat" xmlns:Date="java.util.Date" exclude-result-prefixes="SimpleDateFormat Date">
<xsl:variable name="s" select="SimpleDateFormat:new('MMM/dd/yyyy-HH/mm/ss/SSS')"/>
<xsl:variable name="date" select="Date:new()"/>
<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
<xsl:template match="*">
<Test>
<xsl:value-of select="SimpleDateFormat:format($s,$date)" />
</Test>
</xsl:template>
</xsl:stylesheet>

希望这会有所帮助!

关于xslt调用java实例方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13136229/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com