issue of JSTL forEach iterate from arrayList
Posted
by Mickey
on Stack Overflow
See other posts from Stack Overflow
or by Mickey
Published on 2010-06-01T05:17:14Z
Indexed on
2010/06/01
5:23 UTC
Read the original article
Hit count: 212
In my code, I have used ArrayList which stores the number format like '$0.00 to $1,000,000.00' in each index of array list. while iterate in JSP through tag, its values are printing like
$0.00 to $1 as a first string, 000 as a second string and 000.00 as a thrid string. but it has to print like '$0.00 to $1,000,000.00'.
what will be the problem is?
Thanks in advance
© Stack Overflow or respective owner