vote up 1 vote down star

Hi ,

this is my expression code ;

($F{Personel_ODEME}.equals(Boolean.TRUE)) ? "PAID" : "NO PAID"

if Personel is paid her/his tax jasper report will write PAID else NO PAID in Report.But in DB this field is BOOLEAN Type but expression is returning string type. SO i am getting "Can not cast from String to Boolean" error. how can i solve this guyz ?

flag

67% accept rate

2 Answers

vote up 1 vote down check

ok i fixed it . i have changed $F{Personel_ODEME's type to STRING .. than its worked like a charm. thanx.

link|flag
vote up 2 vote down

The problem stems from your test $F{Personel_ODEME}.equals(Boolean.TRUE), which Jasper is thinking is a String to Boolean comparison, and doesnt like. To fix this, try this:

($F{Personel_ODEME}.equals(Boolean.TRUE.toString())) ? "PAID" : "NO PAID"

This will result in a String to String comparison.

It is good to note that In Java, a "true".equals(Boolean.TRUE) would result to false.

edit:

This appears to be a Jasper 'PrintWhen' expression, which allows you to determine whether to print the contents of a cell or not. It is expecting Boolean.TRUE or Boolean.FALSE as its return values. When you return "PAID", Jasper tries to evaluate that String as a Boolean, which it cant, so it throws the exception.

link|flag
I believe you mean - "true".equals(Boolean.TRUE) – Jack Leow Jul 19 at 2:12
@Jack Leow: that is exactly what i mean. thanks. edited. – akf Jul 19 at 2:27
nope this no fix my problem. $F{Personel_ODEME} is BOolean field i cant use toString method.Gettin same error. – Ibrahim AKGUN Jul 19 at 10:05
I know what is the problem but how can i solve it ? Is there any way to fix this ? – Ibrahim AKGUN Jul 19 at 14:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.