一:各种Date之间的转换方法 public class TimeTest { public static void main(String[] args) { Date date = new Date(); // 一.获取当前系统时间和日期并格式化输出: SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//设置日期格式 String dateTime = df.format(date); // For…
1.Date对象转换为时间戳 Date date = new Date(); long times = date.getTime(); System.out.println(times); 效果如下: 1508824283292 2.时间戳转换为Date日期对象 long times = System.currentTimeMillis(); Date date = new Date(times); System.out.println(date); 效果如下: Tue Oct 24 13:…