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 localized day-in-week name

Java DateTime, Calendar: Exercise-12 with Solution

Write a Java program to get localized day-in-week name.

Sample Solution:

Java Code:

import java.util.*;
import java.time.*;
import java.text.*;

public class Exercise12 {

public static void main(String []args){

  // Localize in German
  
  DateFormatSymbols symbols = new DateFormatSymbols(new Locale("de"));
   // for the current Locale :
   //   DateFormatSymbols symbols = new DateFormatSymbols(); 
    String[] dayNames = symbols.getWeekdays();
    for (String s : dayNames) { 
    System.out.print(s + "\n");
	System.out.println();
    }
  }
}

Sample Output:

Sonntag                                                                                                       
Montag                                                                                                       
Dienstag                                                                                                           
Mittwoch                                                                                                      
Donnerstag                                                                                                        
Freitag                                                                                                       
Samstag 

Flowchart:

Flowchart: Java DateTime, Calendar Exercises - Get localized day-in-week name

Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to get the number of days of a month.
Next: Write a Java program to get a day of the week of a specific date.

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