For example for today I want string as "Sunday". I know how to do this in Java 6:

String day = Calendar.getInstance().getDisplayName(Calendar.DAY_OF_WEEK, Calendar.LONG, Locale.getDefault());

But this doesn't compile in Java 5. Any idea how to do this?

link|improve this question

77% accept rate
feedback

2 Answers

up vote 4 down vote accepted

You could use DateFormat:

SimpleDateFormat weekdayFormat = new SimpleDateFormat("EEEE");
System.out.println(weekdayFormat.format(new Date()));

I haven't tried it but this should work.

link|improve this answer
Thanks a lot!!!!! – Asha Oct 30 '11 at 17:19
feedback
switch (Calendar.getInstance ().get (Calendar.DAY_OF_WEEK)) { ... }
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.