首页 > 代码库 > 时间戳转为代表"距现在多久之前"的字符串
时间戳转为代表"距现在多久之前"的字符串
/** * 将时间戳转为代表"距现在多久之前"的字符串 * @param timeStr 时间戳 * @return */ public static String getStandardDate(String timeStr) { StringBuffer sb = new StringBuffer(); long t = Long.parseLong(timeStr); long time = System.currentTimeMillis() - (t*1000); long mill = (long) Math.ceil(time /1000);//秒前 long minute = (long) Math.ceil(time/60/1000.0f);// 分钟前 long hour = (long) Math.ceil(time/60/60/1000.0f);// 小时 long day = (long) Math.ceil(time/24/60/60/1000.0f);// 天前 if (day - 1 > 0) { sb.append(day + "天"); } else if (hour - 1 > 0) { if (hour >= 24) { sb.append("1天"); } else { sb.append(hour + "小时"); } } else if (minute - 1 > 0) { if (minute == 60) { sb.append("1小时"); } else { sb.append(minute + "分钟"); } } else if (mill - 1 > 0) { if (mill == 60) { sb.append("1分钟"); } else { sb.append(mill + "秒"); } } else { sb.append("刚刚"); } if (!sb.toString().equals("刚刚")) { sb.append("前"); } return sb.toString(); }
时间戳转为代表"距现在多久之前"的字符串
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。