Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java DateTime, Calendar Exercises: Get a day of the week of a specific date

Java DateTime, Calendar: Exercise-13 with Solution

Write a Java program to get a day of the week of a specific date.

Sample Solution:

Java Code:

import java.util.*;
public class Exercise13 {
public static void main(String []args){
     // Create a default calendar
        Calendar cal = Calendar.getInstance();
    //Set your date: cal.setTime(yourDate);
	System.out.println();
        int dayOfWeek = cal.get(Calendar.DAY_OF_WEEK);
        System.out.println("Day of the week : " + dayOfWeek); 
	System.out.println();
    }
}

Sample Output:

Day of the week : 3

N.B.: The result may varry for your system date and time.

Flowchart:

Flowchart: Java DateTime, Calendar Exercises - Get a day of the week of a specific date

Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to get localized day-in-week name.
Next: Write a Java program to get the current local time.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe