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

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

王林
王林Original
2020-06-20 09:58:526899browse

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( )

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

Date(long millisec)

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));

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!

Statement:
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