perReports中使用printWhenExpression

perReports中使用printWhenExpression

本文介绍了如何在JasperReports中使用printWhenExpression的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有人可以告诉我如何使用JasperReports的 printWhenExpression 吗?

Can somebody tell me how to use the printWhenExpression of JasperReports?

推荐答案

你有相对于布尔值的错误吗?

Do you have an error relative to boolean ?

因为你需要使用布尔而不是基本类型。

Because you need to use Boolean instead of the primitive type.

所以:

$F{mesure} != "PH"
($F{userfd4}).equals("1") ? true : false

会给无法从布尔值转换为布尔值

( $F{mesure}.startsWith("PH") ? Boolean.TRUE:Boolean.FALSE )
($F{userfd4}).equals("1") ? Boolean.TRUE : Boolean.FALSE

是正确的。

另见

2015年11月更新(7年后)

Update Nov 2015 (7 years later)

指出:

这篇关于如何在JasperReports中使用printWhenExpression的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-26 06:09