Free Data Structures and Algorithms Course









Subscribe below and get all best seller courses for free !!!










OR



Subscribe to all free courses

How to display or get list of week days names in Java ?.

Program to implement how to display or get list of week days names in Java

package com.hubberspot.lists;

import java.text.DateFormatSymbols;

public class WeekDaysList {

	public static void main(String[] args) {

		// Create a DateFormatSymbols instance
		DateFormatSymbols dfs = new DateFormatSymbols();

		// DateFormatSymbols instance has a method by name
		// getWeekdays() which returns back an array of 
		// week days name
		String[] arrayOfWeekDaysNames = dfs.getWeekdays();

		// loop over each day name and printing on the 
		// console
		for( String dayName : arrayOfWeekDaysNames ) { 

			System.out.println(dayName);

		}

		dfs = new DateFormatSymbols();

		// DateFormatSymbols instance has a method by name
		// getShortWeekdays() which returns back an array of 
		// week days name in short forms
		String[] arrayOfShortWeekDaysNames = dfs.getShortWeekdays();

		// loop over each day name and printing on the 
		// console
		for( String dayName : arrayOfShortWeekDaysNames ) { 

			System.out.println(dayName);

		}

	}

}



Output of the program : 


 
 
© 2021 Learn Java by Examples Template by Hubberspot