How do I Get a List of Weekday Names?
Category: java.text, viewed: 1609 time(s).
The example code below helps you to get all weekday names as an array of String. The first method, getWeekdays() return the full name string while the second method getShortWeekdays() return the short name of the weekday.
import java.text.DateFormatSymbols; public class WeekdayNames { public static void main(String[] args) { String[] weekdays = new DateFormatSymbols().getWeekdays(); for (int i = 0; i < weekdays.length; i++) { String weekday = weekdays[i]; System.out.println("weekday = " + weekday); } String[] shortWeekdays = new DateFormatSymbols().getShortWeekdays(); for (int i = 0; i < shortWeekdays.length; i++) { String shortWeekday = shortWeekdays[i]; System.out.println("shortWeekday = " + shortWeekday); } } } |
The result of the code above are:
weekday = Sunday weekday = Monday weekday = Tuesday weekday = Wednesday weekday = Thursday weekday = Friday weekday = Saturday shortWeekday = Sun shortWeekday = Mon shortWeekday = Tue shortWeekday = Wed shortWeekday = Thu shortWeekday = Fri shortWeekday = Sat
Related Examples
- How do I format a number with leading zeros?
- How do I parse a number for a locale?
- How do I format a number for a locale?
- How do I iterate a subset of a string?
- How do I reverse a string using CharacterIterator?
- How do I iterate each characters of a string?
- How do I format a date-time value?
- How do I format a date into dd/mm/yyyy?
- How do I format a number?
- How do I convert Date to String?
|
|