Home > Java > Javagetting Started > What is the function in java that returns the current system date?

What is the function in java that returns the current system date?

王林
Release: 2020-06-20 09:58:52
Original
6936 people have browsed it

What is the function in java that returns the current system date?

#The function in java that returns the current system date is Date().

The java.util package provides the Date class to encapsulate the current date and time. The Date class provides two constructors to instantiate Date objects.

(Recommended tutorial: java introductory program)

The first constructor uses the current date and time to initialize the object.

Date( )
Copy after login

The second constructor receives a parameter, which is the number of milliseconds since January 1, 1970.

Date(long millisec)
Copy after login

Example:

Get the current time through the Date class, the code is as follows:

Date date = new Date();
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 
System.out.println(df.format(date));
Copy after login

Recommended related video tutorials: java video tutorial

The above is the detailed content of What is the function in java that returns the current system date?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template