- 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
Java Program to display date and time information in lowercase
Firstly, create a Formatter and a Calendar object.
Formatter f = new Formatter(); Calendar c = Calendar.getInstance();
To display complete date and time information use the ‘c’ conversion character. However, to display it in lowercase, use ‘tc’ −
f = new Formatter(); System.out.println(f.format("
Date and Time (lowercase): %tc
", 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("
Date and Time (lowercase): %tc
", cal)); } }
Output
Current date and time: Mon Nov 26 07:43:47 UTC 2018 Date and Time (lowercase): Mon Nov 26 07:43:47 UTC 2018
- Related Articles
- Java Program to display date and time information in uppercase
- Display complete date and time information using Formatter in Java
- Java Program to display date and time in Milliseconds
- Java Program to Display current Date and Time
- Golang program to display current date and time
- Java Program to parse date and time
- Display entire date time with milliseconds in Java
- Display nanoseconds with Java Date and Time Conversion Character
- Java Program to display Current Time in another Time Zone
- How to display date and time picker in ReactNative?
- Java Program to display computer time in milliseconds
- Java Program to Get Current Date/Time
- Java Program to display past date from GregorianCalendar
- Java Program to display Time in 12-hour format
- Java Program to display time in 24-hour format

Advertisements