来格式化时间显示正确的时间

在richfaces3.3 里面用<f:convertDateTime>来格式化时间显示的时候。时间显示不对的问题。

 

解决办法:指定local和timeZone属性。

 

如果指指定local属性,没有指定timeZone属性会发生小时和分钟显示不对的情况


Xml代码
<h:outputText id="selectedDateOutPut" value="#{overallIndexView.theSelectedDate}"> <f:convertDateTime locale="#{calendarBean.locale}" pattern="yyyy-MM-dd HH:mm:ss" timeZone="GMT+8"/> </h:outputText>
其中local可以用 2种方法指定
  1. 在xhtml里面用 locale=" cn "
  2. 使用后台bean变量,通过在java中定义locale = Locale.getDefault();(或者locale = Locale.CHINA;)来指定

这样显示的时间就对了.

你可能感兴趣的:(java,bean,Date,timezone,XHTML,Richfaces)