Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想用现有数据库在 ireport 中生成 raport。我在字符串中有字段,在字符串中也有$F{Price}变量$V{SumPrice},需要转换为整数并将整列与字段相加Price
$F{Price}
$V{SumPrice}
Price
可以在 ireport 中进行吗?我无权访问数据库。
您应该将 $V{SumPrice} “变量类”属性设置为java.lang.Integer并将“变量表达式”属性设置为Integer.parseInt($F{Price})。
java.lang.Integer
Integer.parseInt($F{Price})