The document summarizes key aspects of the java.util.Date class including:
1) The java.util.Date class represents a specific point in time with millisecond precision, though most methods are deprecated in favor of Calendar.
2) The Date class has constructors that allow initializing a date from the current time or from a long value of milliseconds since January 1, 1970.
3) Common methods allow getting/setting the date, comparing dates, converting to string, and more.
Related topics: