java - How to aviod comma in jstl -


i use format tag print decimal value using below code.

<fmt:formatnumber value="${scorecomponentnormalization.rangeend}" maxfractiondigits="1" /> 

my expected value is:2000

but in prints:2,000

how avoid comma.any appreciated!!!

use following in fmt:formatnumber tag

groupingused="false" /> 

since default true


Comments

Popular posts from this blog

tcpdump - How to check if server received packet (acknowledged) -