无法将元素类型 (transactionDate, xs:anyType) 的值 class net.sf.saxon.tinytree.TinyElementImpl 转换为 class java.util.Date
Cannot convert value class net.sf.saxon.tinytree.TinyElementImpl of type element(transactionDate, xs:anyType) to class java.util.Date
我们有一个用例,我们从 Xslt 模板调用 java 静态方法。我们在方法调用中传递了一些参数。其中一个参数是 java.util.Date。在测试期间,我看到了这个特殊的异常:
Cannot convert value class net.sf.saxon.tinytree.TinyElementImpl of type element(transactionDate, xs:anyType) to class java.util.Date
找不到失败的任何原因。
Java 对象:
public Double getValue(String s1, String s2, Date d1) {
// perform some operation.
Double response = 2.0;
return response;
}
Xslt 模板:已添加:
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:barcode="http://barcode4j.krysalis.org/ns"
xmlns:fo="http://www.w3.org/1999/XSL/Format"
xmlns:internal="http://internal.project.org"
xmlns:fox="http://xmlgraphics.apache.org/fop/extensions"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:date="http://exslt.org/dates-and-times"
xmlns:exsl="http://exslt.org/common"
extension-element-prefixes="exsl"
xmlns:util="java:com.personal.utils.DateUtil"
version="2.0">
<xsl:variable name="country1" select="/data/country"/>
<xsl:variable name="country2" select="'US'"/>
<xsl:variable name="orderDate" select="/data/transactionDate"/>
<xsl:variable name="currencyToPrint">
<xsl:value-of select="getValue($country1, $country2, $orderDate)"/>
</xsl:variable>
有人可以帮忙解释是什么导致了这个异常,为什么它不能转换为 java.util.Date?
这里给出规则:
这里:
没有定义从无类型原子值到 java.util.Date
的转换。有从 xs:date
和 xs:dateTime
到 java.util.Date
的可用转换,因此如果您首先将 $orderDate
转换为这些类型之一,它应该可以工作。
当然,这假设 /data/transactionDate 是 xs:date
或 xs:dateTime
的正确格式 - 如果不是(例如,如果它是 D/M/Y 格式) ,那么您需要自己进行转换。
我们有一个用例,我们从 Xslt 模板调用 java 静态方法。我们在方法调用中传递了一些参数。其中一个参数是 java.util.Date。在测试期间,我看到了这个特殊的异常:
Cannot convert value class net.sf.saxon.tinytree.TinyElementImpl of type element(transactionDate, xs:anyType) to class java.util.Date
找不到失败的任何原因。
Java 对象:
public Double getValue(String s1, String s2, Date d1) {
// perform some operation.
Double response = 2.0;
return response;
}
Xslt 模板:已添加:
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:barcode="http://barcode4j.krysalis.org/ns"
xmlns:fo="http://www.w3.org/1999/XSL/Format"
xmlns:internal="http://internal.project.org"
xmlns:fox="http://xmlgraphics.apache.org/fop/extensions"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:date="http://exslt.org/dates-and-times"
xmlns:exsl="http://exslt.org/common"
extension-element-prefixes="exsl"
xmlns:util="java:com.personal.utils.DateUtil"
version="2.0">
<xsl:variable name="country1" select="/data/country"/>
<xsl:variable name="country2" select="'US'"/>
<xsl:variable name="orderDate" select="/data/transactionDate"/>
<xsl:variable name="currencyToPrint">
<xsl:value-of select="getValue($country1, $country2, $orderDate)"/>
</xsl:variable>
有人可以帮忙解释是什么导致了这个异常,为什么它不能转换为 java.util.Date?
这里给出规则:
这里:
没有定义从无类型原子值到 java.util.Date
的转换。有从 xs:date
和 xs:dateTime
到 java.util.Date
的可用转换,因此如果您首先将 $orderDate
转换为这些类型之一,它应该可以工作。
当然,这假设 /data/transactionDate 是 xs:date
或 xs:dateTime
的正确格式 - 如果不是(例如,如果它是 D/M/Y 格式) ,那么您需要自己进行转换。