- 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 Seconds in ss format (01, 02) in Java
The ss format for seconds is like representing seconds 01, 02, 03, 04, etc. We will use it like this.
SimpleDateFormat("ss");
Let us see an example −
// displaying seconds in ss format simpleformat = new SimpleDateFormat("ss"); String strSeconds = simpleformat.format(new Date()); System.out.println("Seconds in ss format = "+strSeconds);
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 seconds in ss format simpleformat = new SimpleDateFormat("ss"); String strSeconds = simpleformat.format(new Date()); System.out.println("Seconds in ss format = "+strSeconds); } }
Output
Date and time = Mon, 26 Nov 2018 10:53:04 Current Date = 26/November/2018 Current Time = 10.53.04 Seconds in ss format = 04
- Related Articles
- Display seconds with SimpleDateFormat('ss') in Java
- Display hour in hh (01-12 in AM/PM) format in Java
- Format hour in kk (01-24) format in Java
- Format Seconds in s format in Java
- Display seconds with SimpleDateFormat(“s”) in Java
- Display TimeZone in z format in Java
- Display TimeZone in zzzz format in Java
- Display Month in MMM format in Java
- Display Month in MMMM format in Java
- Order dates in MySQL with the format “01 August 2019”?
- How to convert seconds to HH-MM-SS with JavaScript?
- Display hour in KK (00-11) format in Java
- Java Program to format date as Apr 14 2019 01:35 PM IST
- How to Convert Seconds to Time (hh mm ss) or Vice Versa in Excel?
- Java Program to display Time in 12-hour format

Advertisements