如何给iReport中的变量设置初始值?
在 iReport 3.6.7 中,我尝试使用 Double
变量。我希望它的初始值为 0
或 0.00
。
目前尚未设置初始值,因此报表中显示null
。如果没有明确指定值,如何使其具有初始值?
In iReport 3.6.7, I am trying to use a Double
variable. I want it to have an initial value of 0
or 0.00
.
At present, no initial value has been set, so it displays null
in the report. How can I make it have an initial value if no value has been explicitly specified?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 iReport 中执行此操作的方法如下:
初始值表达式
设置为new Double(0.0)
Here's how to do it in iReport:
Initial Value Expression
tonew Double(0.0)