在Java中System.currentTimeMillis():用毫秒级Long类型值返回当前的日期及时间值,如何将该格式转换成日期,方式如下:
long msec = System.currentTimeMillis(); //该值是从1970年00:00:00该当前的毫秒数值
Date date = new Date(2014, 06, 12, 15, 22, 30); //将指定的日期转换成毫秒级long值
long msec1 = date.getTime();
SimpleDateFormat dateformat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//将毫秒级long值转换成日期格式
GregorianCalendar gc = new GregorianCalendar();
gc.setTimeInMillis(msec1);
String dateStr = dateformat.format(gc.getTime());