简单记录一下 java 中 Date 类的使用
通过 Date 创建
默认构造函数会创建当前时间点的 Date 对象, 另外还可以通过 Date(long milliseconds)
的构造器创建指定时间的日期对象
主要方法:
- getTime() - return milliseconds
- before(Date) - if date is before target date
- after(Date)
1 | public static void main(String[] args) { |
通过 SimpleDateFormat 创建
相比于上一种方式,这种更易懂一点,而且可以指定输出格式呦(´▽`)
1 | public static void main(String[] args) throws ParseException { |