获取
的替代方法是什么?static Date from = new Date(System.currentTimeMillis()), to = new Date(System.currentTimeMillis())
因为Date
现已过时(并且已部分弃用),它正在给我一个NullPointerException
。我想获得当前的系统时间。
答案 0 :(得分:1)
使用div
。
Calendar
在Java 8中:
Date currentDate = Calendar.getInstance().getTime();