-1

我有 bal = -1000.00 我想在 jsp 中显示为 (1000.00)。

<c:when test="${((bal) < 0)}">
<(${-1*bal})/>
</c:when>

输出 ID (1000)

小数被丢弃。

4

1 回答 1

1

使用:

<fmt:formatNumber type="currency" minFractionDigits="2" value="${bal}" />

当 bal 为 -1000.00 时,将得到你 '(1000.00)'

于 2013-09-12T20:51:57.600 回答