Let me propose this solution for you. So in your managed bean, do this
public String convertTime(long time){
Date date = new Date(time);
Format format = new SimpleDateFormat("yyyy MM dd HH:mm:ss");
return format.format(date).toString();
}
so in your JSF page, you can do this (assuming foo is the object that contain your time)
<h:dataTable value="#{myBean.convertTime(myBean.foo.time)}" />
If you have multiple pages that want to utilize this method, you can put this in an abstract class and have your managed bean extend this abstract class.
EDIT: Return time with TimeZone
unfortunately, I think SimpleDateFormat will always format the time in local time, so we can use SimpleDateFormat anymore. So to display time in different TimeZone, we can do this
public String convertTimeWithTimeZome(long time){
Calendar cal = Calendar.getInstance();
cal.setTimeZone(TimeZone.getTimeZone("UTC"));
cal.setTimeInMillis(time);
return (cal.get(Calendar.YEAR) + " " + (cal.get(Calendar.MONTH) + 1) + " "
+ cal.get(Calendar.DAY_OF_MONTH) + " " + cal.get(Calendar.HOUR_OF_DAY) + ":"
+ cal.get(Calendar.MINUTE));
}
A better solution is to utilize JodaTime. In my opinion, this API is much better than Calendar (lighter weight, faster and provide more functionality). Plus Calendar.Month of January is 0, that force developer to add 1 to the result, and you have to format the time yourself. Using JodaTime, you can fix all of that. Correct me if I am wrong, but I think JodaTime is incorporated in JDK7
PreparedStatement#setTimestamp()andResultSet#getTimestamp()doesn't work out for you? See also the answer on a similar question which I posted before today: stackoverflow.com/questions/6778558/… With a fullworthyjava.util.Dateobject you can just use JSF standard date/time converters such as<f:convertDateTime>in the view side the usual way to convert between it and a human readable string representation. – BalusC Jul 21 '11 at 20:41BigTableorNoQuerydatabase that facebook or twitter use. I heard those are very different from regular DB. @Raj, sincePreparedStatement#setTimestamp() and ResultSet#getTimestamp()might not work for you, I post higher layer solution for you. – Thang Pham Jul 21 '11 at 20:52