java处理⽇期类型_Java处理时间格式
在Java处理中 显⽰的是时间格式问题
说明以下数据库取出来的时间:
很多电商需要显⽰ 以下是代码:
List> zxinfo = info(param);
for (Map consultationInfo : zxinfo) {
//处理时间格式
String alreadyTime = DateUtils.dateFormat((Date) ("createdTime"), "yyyy/MM/dd HH:mm:ss"); //判断要处理的时间是否为空
java时间日期格式转换if(alreadyTime!=null){
SimpleDateFormat df = new SimpleDateFormat("yyyy/MM/dd 00:00:00");//设置⽇期格式
String nowTime = df.format(new Date());
String time1 = alreadyTime.subSequence(0, 10).toString();
String time2 = nowTime.subSequence(0, 10).toString();
if (time1.equals(time2)) {//同⼀天
String createdTime = alreadyTime.subSequence(11, 16).toString();//截取当天 时,分
consultationInfo.put("createdTime", createdTime);
} else {//不同⼀天
String createdTime = alreadyTime.subSequence(0, 10).toString();//截取当天 年,⽉,⽇
consultationInfo.put("createdTime", createdTime);
}
}
}
return zxinfo;
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论