strus2输出日期格式格式化的方式
1. 1.利用 <s:date>进行格式化.如:
<s:date name="birthday" format="yyyy-MM-dd HH:mm:ss"/>就是将属性birthday按yyyy-MM-dd的格式进行输出.
2.? 还有一种是通过国际化的方式来进行:
首先在struts.properties中配置struts.custom.i18n.resources=globalMessages
然后在globalMessages_zh_CN.properties和globalMessages_en_US.properties文件中添加如下内容:
global.datetime = {0, date, yyyy-MM-dd HH:mm:ss}
global.date = {0, date, yyyy-MM-dd}
最后在页面中使用下面的语句就可以实现日期的格式化输出了.
<s:textfield name="birthday" value="%{getText('global.date',{birthday})}"/> --golbal.date样式
<s:textfield name="birthday" value="%{getText('global.datetime',{birthday})}"/> --global.datetime样式
?
3?.
<s:text name="'global.format.date'">
? <s:param value="'birthday.time()'"/>
</s:text>