1. JSTL fmt currency - Only displaying the currency symbol coderanch.comThat would be a bit of a misuse of the JSTL tag. The currency symbol is available from the class java.util.Currency. You should obtain it from there. If you have an instance of the Currency object already, you can just use ${currency.symbol} If you need to obtain an instance of the currency first, use the Currency.getInstance(currencyCode) method. This is not directly ... |
2. JSTL fmt:formatNumber does not display currency coderanch.com |