How to get the name of the day from java sql.Timestamp object such as Monday, Tuesday?

link|improve this question

50% accept rate
1  
Check out the JodaTime library. It makes date processing at least ten times simpler than java.util.Date and java.util.Calendar. – Jim Ferrans Nov 8 '10 at 23:18
feedback

2 Answers

up vote 4 down vote accepted

You convert your java.sql.Timestamp to a java.sql.Date and send it through a Calendar.

java.sql.Timestamp ts = rs.getTimestamp(1);
java.util.GregorianCalendar cal = Calendar.getInstance();
cal.setTime(ts);
System.out.println(cal.get(java.util.Calendar.DAY_OF_WEEK));
link|improve this answer
1  
I think Calendar.get() returns an integer. So, this would mean you still have to create a representing string for the day of the week. – Martijn Courteaux Nov 8 '10 at 22:54
3  
There's absolutely no need to construct a new date on it. The Timestamp is a subclass of java.util.Date. So cal.setTime(ts) would have worked as good. Further, the recommended practice is to obtain the calendar by its abstract factory as Calendar cal = Calendar.getInstance(). – BalusC Nov 9 '10 at 3:13
Improved answer :) – bwawok Nov 9 '10 at 14:11
But it still does not show a string representation of the name of a day like "Monday","Montag","Lundi" etc. ;-) – Michael Konietzka Nov 9 '10 at 15:17
feedback

SimpleDateFormat will provide a Locale specific representation using the pattern "EEEE":

 public static final String getDayName(final java.util.Date date, final java.util.Locale locale)
          {
           SimpleDateFormat df=new SimpleDateFormat("EEEE",locale);
           return df.format(date);
          }

Example usage:

System.out.println(getDayName(new Date(),Locale.US));

returns Tuesday.

But beware that new SimpleDateFormat(..) is expensive.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.