bigdecimal as parameter
I've got a problem regarding ireport again.
How can I pass parameter 开发者_开发百科from jsp page to ireport? my field in ireport is bigdecimal. There is no bigdecimal datatype in jsp, right? I try to pass string and int value, and it shows an error.
As JSP has access to everything in Java, it does have access to BigDecimal
.
To convert a String
to BigDecimal
simply use this constructor.
Either you can use:
<jsp:setProperty name="fieldname" property="propname"
value="<%= new BigDecimal(amount)%>" />
精彩评论