把毫秒数转化为显示的时间和把实时间化为毫秒数
2016-08-02 本文已影响0人
木木木丢了
这个特别简单,只需一行代码:
Date d =newDate(时间值);
SimpleDateFormat sdf =newSimpleDateFormat("yyyy-MM-dd hh:mm:ss");
sdf.format(d)
哈哈,简单吧!
下面是把时间转化为毫秒数
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddhhmm");
long millionSeconds = sdf.parse(str).getTime();//毫秒
获取当前的时间点
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//设置日期格式
long millionSeconds = sdf.parse(str).getTime();//毫秒