- 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 hour in hh (01-12 in AM/PM) format in Java
The “hh” format in Java Date is like 01 – 12 hour in AM/ PM. Use SimpleDateFormat("hh") to get the same format;
// displaying hour in hh format SimpleDateFormat simpleformat = new SimpleDateFormat("hh"); String strHour2 = simpleformat.format(new Date()); System.out.println("Hour in hh format = "+strHour2);
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 Z"); System.out.println("Today's 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 Z"); String strTime = simpleformat.format(new Date()); System.out.println("Current Time = "+strTime); // displaying hour in h format simpleformat = new SimpleDateFormat("h"); String strHour1 = simpleformat.format(new Date()); System.out.println("Hour in h format = "+strHour1); // displaying hour in hh format simpleformat = new SimpleDateFormat("hh"); String strHour2 = simpleformat.format(new Date()); System.out.println("Hour in hh format = "+strHour2); } }
Output
Today's date and time = Mon, 26 Nov 2018 09:54:57 +0000 Current Date = 26/November/2018 Current Time = 09.54.57 +0000 Hour in h format = 9 Hour in hh format = 09
- Related Articles
- Display hour in h (1-12 in AM/PM) format in Java
- Java Program to display hour in K (0-11 in AM/PM) format
- Format hour in HH (00-23) format in Java
- Java Program to display hour and minute in AM or PM
- Format hour in kk (01-24) format in Java
- Display hour with SimpleDateFormat(“hh”) in Java
- Java Program to Format time in AM-PM format
- Java Program to display Time in 12-hour format
- How do you display JavaScript datetime in 12hour AM/PM format?
- Display Seconds in ss format (01, 02) in Java
- Display AM/PM time marker with SimpleDateFormat(“a”) in Java
- Format MySQL CURRENT_TIMESTAMP to AM & PM?
- MySQL format time with lowercase am/pm?
- Display hour in KK (00-11) format in Java
- Java Program to format date as Apr 14 2019 01:35 PM IST

Advertisements