如何比较iReport中的日期?

时间:2015-07-06 21:40:11

标签: jasper-reports

如何比较iReport中的日期?我想使用“Print When Expression ..”

类似于:$F{date_from_table} <= $F{another_date_from_table} ? true : false

它应该有用。

正确的语法是什么?感谢。

1 个答案:

答案 0 :(得分:0)

尝试使用Date.before()或Date.after()方法 如下所示

($F{date_from_table}.before($F{another_date_from_table}) || $F{date_from_table}.equals($F{another_date_from_table})) ? true : false