JSP format number



Hi

I want to show numbers, Integers, Float in a JSP with two decimal
places after the comma.

For instance, if the value is 100, I want to show 100,00.

How do I do this in JSP?

I tried using fmt taglibs as following:

<fmt:formatNumber value="${bean.IntegerFied /100}" type="currency" />

But causes an error?

How do I format the output int the JSP page?

.