int值的格式,改变它的显示方式
我正在使用这行代码来显示末尾带有 int 值的字符串。
<legend><spring:message code="time.createMonth.legend" arguments="${year}"/></legend>
该代码正在运行,但它显示的整数类似于数字“2,011”而不是“2011”。
如何格式化它以便显示时不带逗号?
有没有一种简单的方法可以让我直接投掷石膏或其他东西?像这样吗?
"arguments="${(Sting)year}" or "arguments="${Sting.valueOf(year)}" ?
I am using this line of code to dispaly a string with an int value at the end of it.
<legend><spring:message code="time.createMonth.legend" arguments="${year}"/></legend>
The code is working but it is displaying the int lik a number "2,011" instead of "2011".
How can I format it so as it is displayed without the comma?
is there an easy way that i can just throw a cast or somehting? Like so?
"arguments="${(Sting)year}" or "arguments="${Sting.valueOf(year)}" ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看一下数字格式:
http://download.oracle.com/javase/6 /docs/api/java/text/NumberFormat.html
Have a look at NumberFormat:
http://download.oracle.com/javase/6/docs/api/java/text/NumberFormat.html
我认为最简单的是:
I think the easiest would be: