

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
SimpleDateFormat('E, dd MMM yyyy HH:mm:ss Z') in Java
Using the SimpleDateFormat(“E, dd MMM yyyy HH:mm:ss Z”), wherein E is for Day of Week −
// 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()));
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;
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 Format f = new SimpleDateFormat("dd/MMMM/yyyy"); String strDate = f.format(new Date()); System.out.println("Current Date = "+strDate); // displaying month number f = new SimpleDateFormat("M"); String strMonth = f.format(new Date()); System.out.println("Month Number = "+strMonth); // current time f = new SimpleDateFormat("HH.mm.ss Z"); String strTime = f.format(new Date()); System.out.println("Current Time = "+strTime); // 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 and time = Mon, 26 Nov 2018 09:18:28 +0000 Current Date = 26/November/2018 Month Number = 11 Current Time = 09.18.28 +0000 Current Hour = 9 Current Minutes = 18 Current Seconds = 28
- Related Questions & Answers
- Display Date in E MMM dd yyyy format in Java
- How to parse Date from String in the format: dd/MM/yyyy to dd/MM/yyyy in java?
- How to convert seconds to HH-MM-SS with JavaScript?
- Convert MySQL date format from yyyy-mm-ddThh:mm:ss.sssZ to yyyy-mm-dd hh:mm:ss ?
- MySQL query to convert YYYY-MM-DD to DD Month, YYYY date format
- Display Date Time in dd MMM yyyy hh:mm:ss zzz format in Java
- How to convert MM/YY to YYYY-MM-DD in MYSQL?
- Accepting date strings (MM-dd-yyyy format) using Java regex?
- MySQL date format DD/MM/YYYY select query?
- MySQL - Convert YYYY-MM-DD to UNIX timestamp
- Java Program to format date in mm-dd-yyyy hh:mm:ss format
- Format date with SimpleDateFormat('MM/dd/yy') in Java
- Convert dd/mm/yyyy string to Unix timestamp in MySQL?
- How to insert mm/dd/yyyy format dates in MySQL?
- How to format JavaScript date into yyyy-mm-dd format?
Advertisements