- 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
Java Program to get full day name
To display the full day name, use the SimpleDateFormat(“EEEE”) as shown below −
// displaying full-day name f = new SimpleDateFormat("EEEE"); String str = f.format(new Date()); System.out.println("Full Day Name = "+str);
Since, we have used the Format and SimpleDateFormat class above, therefore import the following packages. With that, we have also used the Date.
import java.text.Format; import java.text.SimpleDateFormat; import java.util.Date;
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("dd/MMMM/yyyy hh:mm:s"); System.out.println("Today's date = "+simpleformat.format(cal.getTime())); // current time Format f = new SimpleDateFormat("HH.mm.ss Z"); String strResult = f.format(new Date()); System.out.println("Time = "+strResult); // displaying two-digit day number f = new SimpleDateFormat("dd"); String strDay = f.format(new Date()); System.out.println("Day Number = "+strDay); // displaying full-day name f = new SimpleDateFormat("EEEE"); String str = f.format(new Date()); System.out.println("Full Day Name = "+str); // displaying hour f = new SimpleDateFormat("H"); String strHour = f.format(new Date()); System.out.println("Current Hour = "+strHour); // displaying minutes f = new SimpleDateFormat("mm"); String strMinute = f.format(new Date()); System.out.println("Current Minutes = "+strMinute); // displaying seconds f = new SimpleDateFormat("ss"); String strSeconds = f.format(new Date()); System.out.println("Current Seconds = "+strSeconds); } }
Output
Today's date = 26/November/2018 09:06:49 Time = 09.06.49 +0000 Day Number = 26 Full Day Name = Monday Current Hour = 9 Current Minutes = 06 Current Seconds = 49
- Related Articles
- Get localized day name in Java
- Java Program to get display name for Day of Week in different locale
- Get localized short day-in-week name in Java
- Java Program to get day of week as string
- Java program to print the initials of a name with last name in full
- Java Program to display date with day name in short format
- Java Program to get the day of the week from GregorianCalendar
- Java Program to get name of parent directory
- Java Program to get day of week for the last day of each month in 2019
- How to get day name from timestamp in MySQL?
- Java Program to get Operating System name and version
- C# Program to get current day of week
- Java Program to get name of specified file or directory
- Get day name for the corresponding date in MySQL?
- Python program to print the initials of a name with last name in full?

Advertisements