w3resource

Java: Get localized day-in-week name


12. Localized Day Names

Write a Java program to get localized day-of-week names.

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


For more Practice: Solve these Related Problems:

  • Write a Java program to display the names of the days of the week in French using Locale settings.
  • Write a Java program to list day-of-week names localized to German and output them in order.
  • Write a Java program to retrieve localized day names for a given Locale and sort them by week order.
  • Write a Java program to print both full and abbreviated day-of-week names in a specified Locale.

Go to:


PREV : Days in Month.
NEXT : Day of Week for Date.

Java Code Editor:

Improve this sample solution and post your code through Disqus

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.