The setWeekdays(String[] newWeekds) Method of DateFormatSymbols class in Java is used to set the names of the weekdays of the calendar in string format into some different strings. For eg., “Sunday” can be changed to “FRIDAY”, “Monday” can be changed to “WEDNESDAY” or into some other random strings.
Syntax:
public void setWeekdays(String[] newWeekds)
Parameters: The method takes one parameter newWeekds which is an array of String type and refers to the new strings that are to be replaced in the existing weekdays.
Return Values: The method returns the modified names of the weekdays in a string format.
Below programs illustrate the use of setWeekdays() method.
Example 1:
Java
import java.text.DateFormatSymbols;
import java.util.Locale;
public class DateFormat_Main {
public static void main(String args[])
{
DateFormatSymbols format
= new DateFormatSymbols(
new Locale( "en" , "US" ));
String[] Days = format.getWeekdays();
System.out.print( "Original: " );
for ( int i = 1 ; i < Days.length; i++) {
System.out.print(Days[i] + " " );
}
System.out.println();
String[] modDays = { "WEDNESDAY" , "THURSDAY" ,
"FRIDAY" , "MONDAY" ,
"TUESDAY" , "SUNDAY" ,
"SATURDAY" };
format.setWeekdays(modDays);
String[] modifiedDays = format.getWeekdays();
System.out.print( "Modified: " );
for ( int i = 0 ; i < modifiedDays.length; i++) {
System.out.print(modifiedDays[i] + " " );
}
}
}
|
Output: Original: Sunday Monday Tuesday Wednesday Thursday Friday Saturday
Modified: WEDNESDAY THURSDAY FRIDAY MONDAY TUESDAY SUNDAY SATURDAY
Example 2:
Java
import java.text.DateFormatSymbols;
import java.util.Locale;
public class DateFormat_Main {
public static void main(String args[])
{
DateFormatSymbols format
= new DateFormatSymbols(
new Locale( "en" , "US" ));
String[] Days = format.getWeekdays();
System.out.print( "Original: " );
for ( int i = 1 ; i < Days.length; i++) {
System.out.print(Days[i] + " " );
}
System.out.println();
String[] modDays = { "WEEK" , "RANDOM" ,
"WEDNESDAY" , "THURSDAY" ,
"FRIDAY" , "MONDAY" ,
"TUESDAY" , "SUNDAY" ,
"SATURDAY" };
format.setWeekdays(modDays);
String[] modifiedDays = format.getWeekdays();
System.out.print( "Modified: " );
for ( int i = 0 ; i < modifiedDays.length; i++) {
System.out.print(modifiedDays[i] + " " );
}
}
}
|
Output: Original: Sunday Monday Tuesday Wednesday Thursday Friday Saturday
Modified: WEEK RANDOM WEDNESDAY THURSDAY FRIDAY MONDAY TUESDAY SUNDAY SATURDAY
Reference: https://docs.oracle.com/javase/8/docs/api/java/text/DateFormatSymbols.html#setWeekdays-java.lang.String:A-