Java日期 1)将Date型日期转换为Long毫秒型 2)将Long毫秒型日期转换为Date 3)将Date型日期转换为yyyy格式字符串型

1)将Date型日期转换为Long毫秒型

   Date d = new Date();

   Long dLong = d.getTime();

2)将Long毫秒型日期转换为Date

   Date d = new Date(dLong);

3)将Date型日期转换为yyyy格式字符串型

   SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");

   String s = sdf.format(d);

你可能感兴趣的:(Java日期 1)将Date型日期转换为Long毫秒型 2)将Long毫秒型日期转换为Date 3)将Date型日期转换为yyyy格式字符串型)