- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Formatting day of week in EEEE format in Java
EEEEE format is used in Java Date to format day of week like Monday, Tuesday, Wednesday, etc. Let us use it −
// displaying day of week SimpleDateFormat simpleformat = new SimpleDateFormat("EEEE"); String strDayofWeek = simpleformat.format(new Date()); System.out.println("Day of Week = "+strDayofWeek);
Above, we have used the SimpleDateFormat class, therefore the following package is imported −
import java.text.SimpleDateFormat;
The following is an example −
Example
import java.text.Format; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Calendar; public class Demo { public static void main(String[] args) throws Exception { // displaying current date and time Calendar cal = Calendar.getInstance(); SimpleDateFormat simpleformat = new SimpleDateFormat("E, dd MMM yyyy HH:mm:ss Z"); System.out.println("Today's date and time = "+simpleformat.format(cal.getTime())); // displaying date simpleformat = new SimpleDateFormat("dd/MMMM/yyyy"); String str = simpleformat.format(new Date()); System.out.println("Current Date = "+str); // displaying day of week simpleformat = new SimpleDateFormat("EEEE"); String strDayofWeek = simpleformat.format(new Date()); System.out.println("Day of Week = "+strDayofWeek); // current time simpleformat = new SimpleDateFormat("HH.mm.ss Z"); String strTime = simpleformat.format(new Date()); System.out.println("Current Time = "+strTime); } }
Output
Today's date and time = Mon, 26 Nov 2018 09:40:25 +0000 Current Date = 26/November/2018 Day of Week = Monday Current Time = 09.40.25 +0000
- Related Articles
- Formatting day of week using SimpleDateFormat in Java
- Formatting day in d format in Java
- Formatting day in dd format in Java
- Get Day Number of Week in Java
- Formatting Minute in m format in Java
- Get localized short day-in-week name in Java
- Determine day of week in month from Gregorian Calendar in Java
- Day of the Week in C++
- Display Day Name of Week using Java Calendar
- Get the week number in MySQL for day of week?
- Get the day of week for a particular date in Java
- Java Program to get day of week for the last day of each month in 2019
- Java Program to get day of week as string
- Finding day of week from date (day, month, year) in JavaScript
- Get the Day of the Week from Today's Date in Java

Advertisements