- 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
LocalDate now() Method in Java
The current date can be obtained from the system clock in the default time zone using the now() method in the LocalDate class in Java. This method requires no parameters and it returns the current date from the system clock in the default time zone
A program that demonstrates this is given as follows −
Example
import java.time.*; public class Demo { public static void main(String[] args) { LocalDate ld = LocalDate.now(); System.out.println("The LocalDate is: " + ld); } }
Output
The LocalDate is: 2019-02-15
Now let us understand the above program.
The current date is obtained from the system clock in the default time zone using the now() method and then it is displayed. A code snippet that demonstrates this is as follows −
LocalDate ld = LocalDate.now(); System.out.println("The LocalDate is: " + ld);
Advertisements