Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I write a method in Java, that will tell me the day of the week when I type in the date in the format computeDayOfWeek(Month, Date)?

share|improve this question
2  
You have tagged this with javascript, but asked for how to get the day of week in java, what is it you really want? – Alxandr May 12 '11 at 22:24
Homework? If so, please tag appropriately. – Chris Shouts May 12 '11 at 22:27
not homework, the basic java class I am in is just pictures and the turtles, this is extra credit. The instructions are... Write a method called computeDayOfWeek having two parameters a month and a day in the month (assume it is this year). It returns the day of the week that day is, where 0 is Sunday, 1 is Monday, etc. Your program should display the actual day of the week – Doug May 13 '11 at 0:42

3 Answers

No need for external libraries. java.util.Calendar class handles those stuff.

Calendar c = Calendar.getInstance();
c.setTime(put a java.util.Date instance here);
int dow = c.get(Calendar.DAY_OF_WEEK); //1=sunday, 2=monday, 3=Calendar.WEDNESDAY...
share|improve this answer

If you are looking in Java. You can use the Joda-Time API to achieve this: Check the documentation here: http://joda-time.sourceforge.net/userguide.html

Example:

DateTime dt = new DateTime()
System.out.println(dt.dayOfWeek().getAsText());
share|improve this answer

If you need to calculate this yourself instead of using a pre-made library function, have a look at Zeller's congruence.

I implemented this last year, and then corrected about 40 solutions from students (first real program for quite some of them) trying to do their own - there are lots of ways to make mistakes here. Make sure you test if for different dates (january, february, other months, normal years, leap years, year 2000 (is leap year) and 1900 (is no leap year)).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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