The getWeekdays() Method of DateFormatSymbols class in Java is used to get the name of the weekdays of the calendar in a string format.
Syntax:
public String[] getWeekdays()
Parameters: The method does not take any parameters.
Return Values: The method returns the name of the weekdays in a string format.
Below programs illustrate the use of getWeekdays() method.
Example 1:
import java.text.DateFormatSymbols;
public class DateFormat_Main {
public static void main(String args[])
{
int i;
String wkdays[]
= new DateFormatSymbols().getWeekdays();
for (i = 1 ; i < wkdays.length; i++) {
System.out.println( "Day " + i
+ " = " + wkdays[i]);
}
}
}
|
Output:
Day 1 = Sunday
Day 2 = Monday
Day 3 = Tuesday
Day 4 = Wednesday
Day 5 = Thursday
Day 6 = Friday
Day 7 = Saturday
Example 2:
import java.text.DateFormatSymbols;
public class DateFormat_Main {
public static void main(String args[])
{
int i;
String wkdays[]
= new DateFormatSymbols().getWeekdays();
for (i = 1 ; i < wkdays.length / 2 ; i++) {
System.out.println( "Day " + i
+ " = " + wkdays[i]);
}
}
}
|
Output:
Day 1 = Sunday
Day 2 = Monday
Day 3 = Tuesday
Reference: https://docs.oracle.com/javase/8/docs/api/java/text/DateFormatSymbols.html#getWeekdays–