reggiereg Posted April 3, 2015 Posted April 3, 2015 Jasper iReport Designer Professional 5.6 When running my chart report I get this error: **Error filling print... java.math.BigDecimal cannot be cast to java.lang.String ......Print not filled. The variable I'm using is pulled from an Oracle database and is a BigDecimal data type. In my Value Expression, I'm setting the Value Class Name as java.math.BigDecimal as well. I've tried passing the variable as a string and that doesn't work either. Does anyone have any thoughts on how I can get past this error?
jog_1 Posted April 6, 2015 Posted April 6, 2015 Hi reggiereg,I had to face these kind of errors a while ago, i had fixed it with adding blank string to the String variable passing. Somthing like below.BigDecimal testNum = new BigDecimal("29.87");String str = testNum + ""; Hope this will help, if not provide full jrxml for debugging.
jog_1 Posted April 6, 2015 Posted April 6, 2015 Hi reggiereg,I had to face these kind of errors a while ago, i had fixed it with adding blank string to the String variable passing. Somthing like below.BigDecimal testNum = new BigDecimal("29.87");String str = testNum + ""; Hope this will help, if not provide full jrxml for debugging.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now