Struts2 -- 格式化输出 date,money
时间:2011-01-18 来源:Java Oracle SQL技术
1. 增加国际化支持
在Struts.xml 增加这一行 <constant name="struts.custom.i18n.resources" value="globalMessages" />
资源文件可以放在globalMessages里 (globalMessages_zh_CN.properties, globalMessages_en_US.properties)
global.format.date={0,date,yyyy-MM-dd}
global.format.money={0,number,RMB\#\#0.00 '元'}
order.orderCode=订单代码
2. Jsp 使用
1) <%@ taglib uri="/struts-tags" prefix="s"%>
2) label显示<s:text name="order.orderCode"/>
3) date格式化显示
<s:text name="global.format.date"><s:param value="orderdate"></s:param></s:text>
global.format.date 是国际化资源文件里配置的, orderdate是action里的属性(也可以pojo类的属性)
这样日期就会按配置的格式显示。
相关阅读 更多 +