2

尝试在 Java UUID 类的帮助下生成一个随机数。

<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema"
  exclude-result-prefixes="xs" xmlns:uuid="java:java.util.UUID">
<xsl:template match="/">
<xsl:variable name="uid" select="uuid:randomUUID()"/>
<ClientPK><xsl:value-of select="$uid"/></ClientPK>

错误

Cannot find a matching 0-argument function named {java:java.util.UUID}randomUUID().
  Note that direct calls to Java methods are not available under Saxon-HE
4

1 回答 1

4

请参阅http://saxonica.com/documentation/index.html#!extensibility,如果您想使用 Saxon 9 并拥有该功能(称为反射扩展功能),您需要 PE 或 EE 许可证。

于 2013-09-25T12:30:10.087 回答