struts2 格式化输出与注意事项

好久没用过struts2的格式化输出了,今天再汇总下,
1.写一个Messages.properties配置文件: (千万要注意,如果使用了资源文件,就要在struts2中指定资源文件的文件名,即一定要指定struts.custom.i18n.resources的值,可以在属性文件中指定,也可以在xml文件中指定)
#number:
global.format.money={0,number,#0.00##}
global.format.money02={0,number,##0.00}
#datetime:
global.format.date={0,date,yyyy-MM-dd}
global.format.time={0,date,HH:mm:ss}
global.format.datetime={0,date,yyyy-MM-dd HH:mm:ss}
global.format.datetime02={0,date,yyyy-MM-dd HH:mm}

其中#number为控制数字格式的,一般用于控制钱的位数;#datetime是控制时间格式


2.页面上:<s:text name="global.format.date"><s:param value="deployDate" /></s:text>

其中:<s:text name="global.format.date">控制你要显示的时间格式

      <s:param value="deployDate" />是你要显示的时间

JSP文件
格式化时间:  <s:text name="global.format.date"><s:param value="publishTime"></s:param></s:text>
格式化数字:  <s:text name="global.format.money"><s:param value="price"/></s:text>

二:

<input type="text" value="<s:date name="deployDate" format="yyyy-MM-dd" />" />

其中name="deployDate"是你要显示的时间,format="yyyy-MM-dd"是显示的格式

如果不喜欢使用标签的方式,还可以用如下方式取值。,本人更喜欢如下方式,如:
<s:property value="%{getText('global.format.money',{#session.order.productNum})}" />


你可能感兴趣的:(jsp,xml,struts)