如何比较iReport中的日期?我想使用“Print When Expression ..”
类似于:$F{date_from_table} <= $F{another_date_from_table} ? true : false
它应该有用。
正确的语法是什么?感谢。
答案 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