- 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
Display three letter-month value with SimpleDateFormat('MMM') in Java
Using the SimpleDateFormat(“MMM”) to display three-letter month −
Format f = new SimpleDateFormat("MMM"); String strMonth = f.format(new Date()); System.out.println("Month (Three-letter format) = "+strMonth);
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 year f = new SimpleDateFormat("yyyy"); String strYear = f.format(new Date()); System.out.println("Year = "+strYear); // displaying three-letter month f = new SimpleDateFormat("MMM"); String strMonth = f.format(new Date()); System.out.println("Month (Three-letter format) = "+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:29:58 +0000 Current Date = 26/November/2018 Year = 2018 Month (Three-letter format) = Nov Current Time = 09.29.58 +0000 Current Hour = 9 Current Minutes = 29 Current Seconds = 58
- Related Articles
- Display Month in MMM format in Java
- Display the month number with SimpleDateFormat(“M”) in Java
- Display hour with SimpleDateFormat(“H”) in Java
- Display minutes with SimpleDateFormat(“m”) in Java
- Display today’s date in Java with SimpleDateFormat
- Display hour with SimpleDateFormat(“hh”) in Java
- Display seconds with SimpleDateFormat(“s”) in Java
- SimpleDateFormat('E, dd MMM yyyy HH:mm:ss Z') in Java
- Display time zone with SimpleDateFormat(“z”) in Java
- Display minutes with SimpleDateFormat('mm') in Java
- Display seconds with SimpleDateFormat('ss') in Java
- Display year with SimpleDateFormat('yyyy') in Java
- Display AM/PM time marker with SimpleDateFormat(“a”) in Java
- Display day number with SimpleDateFormat('d') in Java
- Display Date in E MMM dd yyyy format in Java

Advertisements