效果图:
代码:
1、将下面内容copy到对应的controller类中;
/*
* 将时间戳转换为时间
*/
public String stampToDate(String s) {
String res;
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
long lt = new Long(s);
Date date = new Date(lt);
res = simpleDateFormat.format(date);
return res;
}
2、然后在post请求方法中去拿到时间字符串。
//拿到时间字符串,说明:people是你自己项目中对应的实体类
people.setDate(stampToDate(System.currentTimeMillis()+""));
3、成功啦!!!
版权声明:本文为qq_40573403原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。