- 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
Format hour in k (1-24) format in Java
The “k” format in Java Date is used to format hour in 1-24 format. Use SimpleDateFormat("k") to get the same format.
// displaying hour in k format simpleformat = new SimpleDateFormat("k"); String strHour = simpleformat.format(new Date()); System.out.println("Hour in k format = "+strHour);
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("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"); String strTime = simpleformat.format(new Date()); System.out.println("Current Time = "+strTime); // displaying hour in k format simpleformat = new SimpleDateFormat("k"); String strHour = simpleformat.format(new Date()); System.out.println("Hour in k format = "+strHour); } }
Output
Today's date and time = Mon, 26 Nov 2018 10:05:45 Current Date = 26/November/2018 Current Time = 10.05.45 Hour in k format = 10
- Related Articles
- Format hour in kk (01-24) format in Java
- Converting 12 hour format time to 24 hour format in JavaScript
- Java Program to display time in 24-hour format
- Format hour in HH (00-23) format in Java
- Java Program to format hour in H (0-23) format in Java
- Convert time from 24 hour clock to 12 hour clock format in C++
- Java Program to display hour in K (0-11 in AM/PM) format
- Python Pandas - Format the Period object and display the Time with 24-Hour format
- Display hour in h (1-12 in AM/PM) format in Java
- How to convert string to 24-hour datetime format in MySQL?
- Python program to convert time from 12 hour to 24 hour format
- C++ program to convert time from 12 hour to 24 hour format
- C# program to convert time from 12 hour to 24 hour format
- Display hour in KK (00-11) format in Java
- How to Convert Time Format from 12 Hour to 24 Hour and Vice Versa in Excel?

Advertisements