- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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
Format Month in MM format in Java
The MM format is for months in two-digits 01, 02, 03, 04, etc. Here, we will use the following.
SimpleDateFormat("MM");
Let us see an example −
// displaying month in MM format SimpleDateFormat simpleformat = new SimpleDateFormat("MM"); String strMonth = simpleformat.format(new Date()); System.out.println("Month in MM format = "+strMonth)
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"); System.out.println("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 month in MM format simpleformat = new SimpleDateFormat("MM"); String strMonth = simpleformat.format(new Date()); System.out.println("Month in MM format = "+strMonth); // current time simpleformat = new SimpleDateFormat("HH.mm.ss"); String strTime = simpleformat.format(new Date()); System.out.println("Current Time = "+strTime); } }
Output
Date and time = Mon, 26 Nov 2018 10:37:29 Current Date = 26/November/2018 Month in MM format = 11 Current Time = 10.37.29
- Related Articles
- Format Minutes in mm format in Java
- Format Month in M format in Java
- Java Program to format Month in MMMM format
- Java Program to format date in mm-dd-yyyy hh:mm:ss format
- Display Month in MMM format in Java
- Display Month in MMMM format in Java
- Extract the month and year in the following format: “mm-yyyy” (month year) along with all columns in MySQL?
- MySQL query to convert YYYY-MM-DD to DD Month, YYYY date format
- How to format JavaScript date into yyyy-mm-dd format?
- Format date with SimpleDateFormat('MM/dd/yy') in Java
- Format Seconds in s format in Java
- Format Year in yy format in Java
- Format Year in yyyy format in Java
- Year Month ("Y") Format Specifier in C#
- Month ("M", "m") Format Specifier in C#

Advertisements