
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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
Formatting Minute in M Format in Java
The “m” format is to format minutes i.e. 1, 2, 3, 4, etc. Here, we will use the following.
SimpleDateFormat("m");
Let us see an example −
// displaying minutes in m format SimpleDateFormat simpleformat = new SimpleDateFormat("m"); String strMinute = simpleformat.format(new Date()); System.out.println("Minutes in m format = "+strMinute);
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); // current time simpleformat = new SimpleDateFormat("HH.mm.ss"); String strTime = simpleformat.format(new Date()); System.out.println("Current Time = "+strTime); // displaying minutes in m format simpleformat = new SimpleDateFormat("m"); String strMinute = simpleformat.format(new Date()); System.out.println("Minutes in m format = "+strMinute); } }
Output
Date and time = Mon, 26 Nov 2018 10:25:37 Current Date = 26/November/2018 Current Time = 10.25.37 Minutes in m format = 25
Advertisements