#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!