

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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
Display complete date and time information using Formatter in Java
Firstly, create a Formatter and Calendar object.
Formatter f = new Formatter(); Calendar cal = Calendar.getInstance();
Now display the current date and time. We have shown the date here in both lowercase and uppercase −
f = new Formatter(); System.out.println(f.format("\nDate and Time (lowercase): %tc\n", cal)); f = new Formatter(); System.out.println(f.format("Date and Time (uppercase): %Tc\n", cal));
The following is an example −
Example
import java.util.Calendar; import java.util.Formatter; public class Demo { public static void main(String args[]) { Formatter f = new Formatter(); Calendar cal = Calendar.getInstance(); System.out.println("Current date and time: "+cal.getTime()); f = new Formatter(); System.out.println(f.format("\nDate and Time (lowercase): %tc\n", cal)); f = new Formatter(); System.out.println(f.format("Date and Time (uppercase): %Tc\n", cal)); } }
Output
Current date and time: Mon Nov 26 07:24:21 UTC 2018 Date and Time (lowercase): Mon Nov 26 07:24:21 UTC 2018 Date and Time (uppercase): MON NOV 26 07:24:21 UTC 2018
- Related Questions & Answers
- Java Program to display date and time information in lowercase
- Java Program to display date and time information in uppercase
- Display just hour and minute using Formatter in Java
- Java Program to Display current Date and Time
- Java Program to display date and time in Milliseconds
- Display nanoseconds with Java Date and Time Conversion Character
- Display entire date time with milliseconds in Java
- Java Program to display table with columns in the output using Formatter
- How to display date and time picker in ReactNative?
- Display the Asian and American Date Time with Date Object in JavaScript
- Display seconds since the epoch with Java Date and Time Conversion Character
- How to get complete drive information using C#?
- Vertically align numeric values in Java using Formatter
- Java Program to parse date and time
- Formatter Specifier for Octal and Hexadecimal in Java
Advertisements