通过 XSLT-1.0 访问 Java 方法时出现问题

发布于 2024-10-20 08:22:49 字数 471 浏览 1 评论 0原文

通过 XSL 访问 Java 方法时出现问题。“我有一个 java 类 DirectoryReader.java,其中包含一个返回 int 的静态方法totalPhotos。在我的 XSL 中,我定义了一个命名空间: xmlns:dirReader="xalan://com.mngi.eidos.util.DirectoryReader 并且我正在尝试访问totalPhotos方法,例如:

<xsl:variable name="totalPhotos" select="dirReader:totalPhotos($PhotoPath)"/>

有人可以告诉我吗我的方法有什么问题吗?

我仍然收到以下错误

错误:'第一个参数 非静态 Java 函数“totalPhotos” 不是有效的对象引用

Problems while accessing Java method through XSL .'I have a java class DirectoryReader.java with a static method totalPhotos which returns a int. In my XSL I have defined a namespace: xmlns:dirReader="xalan://com.mngi.eidos.util.DirectoryReader and I am trying to access the totalPhotos method like:

<xsl:variable name="totalPhotos" select="dirReader:totalPhotos($PhotoPath)"/>

Can someone please tell me what is wrong in my approach ?

I still get the following error

ERROR: 'The first argument to the
non-static Java function 'totalPhotos'
is not a valid object reference

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

木緿 2024-10-27 08:22:49

方法 totalPhotos 必须是静态的,或者您必须首先创建该类的实例并将其作为第一个参数传递给调用。

<xsl:variable name="dr" select="dirReader:new(....)"/>
<xsl:variable name="totalPhotos" select="dirReader:totalPhotos($dr,$PhotoPath)"/>

根据您的情况调整 dirReader 构造函数参数

Either the method totalPhotos must be static, or you must first create an instance of the class and pass that as the first argument to the call.

<xsl:variable name="dr" select="dirReader:new(....)"/>
<xsl:variable name="totalPhotos" select="dirReader:totalPhotos($dr,$PhotoPath)"/>

Adjust dirReader constructor arguments to your situation

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文