标签: java jsf
我的数据库有简单的日期和时间,但是当我在用户界面拍照时,所以时间转换为GMT。 如何转换原始时间(DB)。
答案 0 :(得分:1)
使用<f:convertDateTime/>
<f:convertDateTime/>
示例:
<h:outputText value="#{myBean.myDate}"> <f:convertDateTime pattern="dd/MM/yyyy" /> </h:outputText>
有关<f:convertDateTime/>的更多信息,请here。