2016-03-22 14:20
mongodb在数据库中存的是一个秒数的值(虽然在后台看到的正常的格式,但是取出来之后就是一个秒数的和),如何 生成 一个日常生活的中日期格式呢?
1、在后台处理:
引入
import java.text.SimpleDateFormat;
然后,在后台controller中进行处理
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:s");
Date date=bo.getCreateTime();
if(date != null){
b.setCreateTime(format.format(date));
}
2、在前台处理:
date = new Date(1458208881220);
Thu Mar 17 2016 18:01:21 GMT+0800 (中国标准时间)
date.toLocaleDateString()+date.toLocaleTimeString()
"2016/3/17下午6:01:21"