What this code does is print the dates of the current week from Monday to Friday. It works fine, but I want to ask something else: If today is Saturday or Sunday I want it to show the next week... how do I do that?

Here's my working code so far (thanks to StackOverflow!!):

    // Get calendar set to current date and time
    Calendar c = Calendar.getInstance();

    // Set the calendar to monday of the current week
    c.set(Calendar.DAY_OF_WEEK, Calendar.MONDAY);

    // Print dates of the current week starting on Monday to Friday
    DateFormat df = new SimpleDateFormat("EEE dd/MM/yyyy");
    for (int i = 0; i <= 4; i++) {
        System.out.println(df.format(c.getTime()));
        c.add(Calendar.DATE, 1);

Thanks a lot! I really appreciate it as I've been searching for the solution for hours...

link|improve this question
feedback

1 Answer

    public static void main(String[] args) {
        Calendar c = Calendar.getInstance();
        // Set the calendar to monday of the current week
        c.set(Calendar.DAY_OF_WEEK, Calendar.MONDAY);

        // Print dates of the current week starting on Monday to Friday
        DateFormat df = new SimpleDateFormat("EEE dd/MM/yyyy");
        for (int i = 0; i <= 10; i++) {
            System.out.println(df.format(c.getTime()));
            int dayOfWeek = c.get(Calendar.DAY_OF_WEEK);
            if (dayOfWeek == Calendar.FRIDAY) { // If it's Friday so skip to Monday
                c.add(Calendar.DATE, 3);
            } else if (dayOfWeek == Calendar.SATURDAY) { // If it's Saturday skip to Monday
                c.add(Calendar.DATE, 2);
            } else {
                c.add(Calendar.DATE, 1);
            }

            // As Cute as a ZuZu pet.
            //c.add(Calendar.DATE, dayOfWeek > Calendar.THURSDAY ? (9 - dayOfWeek) : 1);
        }
    }

Output

Mon 03/01/2011
Tue 04/01/2011
Wed 05/01/2011
Thu 06/01/2011
Fri 07/01/2011
Mon 10/01/2011
Tue 11/01/2011
Wed 12/01/2011
Thu 13/01/2011
Fri 14/01/2011
Mon 17/01/2011

If you want to be cute you can replace the if/then/else with

c.add(Calendar.DATE, dayOfWeek > 5 ? (9 - dayOfWeek) : 1);

but I really wanted something easily understood and readable.

link|improve this answer
thanks for the reply! If I run it it says that the day of the week is 2 (it's sunday here). So I've put it in that for and Monday start with 3.... is that correct ? – Cristian Jan 9 '11 at 1:55
THANKS A LOT MAN!!!!! – Cristian Jan 9 '11 at 2:03
3  
Maybe use 'dayOfWeek == Calendar.FRIDAY' in preference to 'dayOfWeek == 6', etc.? – martin clayton Jan 9 '11 at 2:06
Sorry for another reply but I gotta say that you absolutely rock... This has been annoying me no end since I'm a beginner at Java at college! Have an awesome year! – Cristian Jan 9 '11 at 2:07
@Martin you are correct, he shouldn't be using Calendar.FRIDAY instead. Thats what I get for writing fast code. I appreciate it. +1 for you. – Andrew Finnell Jan 9 '11 at 2:09
feedback

Your Answer

 
or
required, but never shown

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