我想在jsf頁面中顯示當前的語言環境系統日期。我有下面的代碼,但它不工作。如何在JSF的網頁上顯示系統日期?
<p:column styleClass="columnA">SOP Date</p:column>
<p:column styleClass="columnB">
<h:outputText value="#{bean.currentDate}" />
</p:column>
管理bean看起來像代碼:
@ManagedBean(name = "bean")
public class SopDate implements Serializable {
public String currentDate;
@PostConstruct
public void init(){
SopCurrentDate();
}
public void SopCurrentDate(){
DateFormat df = DateFormat.getDateInstance(DateFormat.SHORT, Locale.getDefault());
Calendar cal = Calendar.getInstance();
this.currentDate = df.format(cal.getTime());
}
// getter and setter
}
什麼你的意思做'它不是working'? –
我的意思是系統日期沒有使用上面的代碼顯示在網頁上。 – Rahul
@PostConstruct不工作? –