我可以将 java 代码放入 .jrxml (jasperreport) 中吗?

发布于 2024-09-01 10:45:43 字数 93 浏览 2 评论 0原文

我可以将 java 代码放入 .jrxml 中吗?

例如,我想放一个 if() 或“new ..()”

可以吗?如何?

谢谢

Can I put java code inside the .jrxml?

For example, I want to put an if() or a "new ..()"

Is it possible? How?

Thanks

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

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

发布评论

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

评论(2

对你的占有欲 2024-09-08 10:45:43

您不能放置任何代码,只能放置表达式。所以,你可以输入:

  • new Something(someParameter)
  • somebool.booleanValue == true ? new Something() : new OtherThing();

但不能使用 ifforswitch 声明方法或类。

You can't put any code, you can only put expressions. So, you can put:

  • new Something(someParameter)
  • somebool.booleanValue == true ? new Something() : new OtherThing();

but you can't use if, for, switch, declare methods or classes.

两相知 2024-09-08 10:45:43

使用 Scriptlet

Jasper Design Studio 6.2 Professional、

Eclipse Mars.1 Release (4.5.1)

完整教程 针对初学者的 Jaspersoft 6.x 中的 Scriptlet 示例 - Hello World 示例示例

use Scriptlet

Jasper Design Studio 6.2 Professional ,

Eclipse Mars.1 Release (4.5.1)

The full tutorial Scriptlet Example in Jaspersoft 6.x for begineers - Hello World Sample Example

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