参考Java准确计算Date相差天数
计算两个时间之间的天数差,用SimpleDateFormat对时间进行一次格式化,丢掉天数之外的精度,再计算时间差
private static String handleDate(long time) throws ParseException {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); Date date = new Date(time); Date old = sdf.parse(sdf.format(date)); Date now = sdf.parse(sdf.format(new Date())); long oldTime = old.getTime(); long nowTime = now.getTime(); long day = (nowTime - oldTime) / (24 * 60 * 60 * 1000); if (day < 1) {
//今天 SimpleDateFormat format = new SimpleDateFormat("HH:mm"); return format.format(date); } else if (day == 1) {
//昨天 SimpleDateFormat format = new SimpleDateFormat("HH:mm"); return "昨天 " + format.format(date); } else {
//可依次类推 SimpleDateFormat format = new SimpleDateFormat("yyyy/MM/dd"); return format.format(date); } }
讯享网

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容,请联系我们,一经查实,本站将立刻删除。
如需转载请保留出处:https://51itzy.com/kjqy/69196.html