Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何让 JSTL fmt 标记用 () 格式化负数?例如,如果我有 -20,它将显示 (20)。正数是正常的。
我试图使用模式来做到这一点,但如果你使用 type="currency" 你会得到括号
<fmt:formatNumber type="currency" value="${line.volume}" />
您还没有展示您尝试过的模式,但我希望是这样的:
“#;(#)”
会工作...