标签: jasper-reports ireport
我想在ireport中使用现有数据库生成raport。 我在字符串中有字段$F{Price}和变量$V{SumPrice},并且需要转换为整数并使用字段Price求和整列
$F{Price}
$V{SumPrice}
Price
可以在ireport中做吗? 我没有权限访问数据库。
答案 0 :(得分:2)
你应该设置$ V {SumPrice}"变量类"属性为java.lang.Integer和"变量表达式"属性Integer.parseInt($F{Price})。
java.lang.Integer
Integer.parseInt($F{Price})