How to print current date and time in Java?
Problem Description :
Write a program in Java that prints current date and time.
Concept :
There are 5 ways to print current date and time using following classes in java.
- Date - This class instance provides current date and time.
- Calendar - getTime() method of this class provides current date and time.
- LocalDate - This class instance provides current date.
- LocalDateTime - This class instance provides current date and time.
- ZonedDateTime - This class instance provides current date, time and timezone.
Note : Java 8 is required to run below code because LocalDate, LocalDateTime and ZonedDateTime classes are part of Java 8 API.
Java Program :
Output :
References :
https://docs.oracle.com/javase/8/docs/api/java/time/ZonedDateTime.html#now--
Thank you friends, I hope you have clearly understood the solution of this problem. If you have any doubt, suggestion or query please feel free to comment below. You can also discuss this solution in our forum.
Thank you friends, I hope you have clearly understood the solution of this problem. If you have any doubt, suggestion or query please feel free to comment below. You can also discuss this solution in our forum.
Tags : Date and Time Problems, Current Date, LocalDate, LocalDateTime, ZonedDateTime, Calendar.
How to print current date and time in Java?
Reviewed by Rohit Agarwal
on
11/24/2016
Rating:
No comments:
Please provide your valuable comments. If you have any suggestion please share with me I will work on it and if you have any question or doubt please ask, don't hesitate. I am your friend, i will clarify all your doubts.