java 友好的显示时间

1、显示时间,

     30秒以内显示刚刚

      几分钟前显示几分钟前

      今天时间显示时间,不显示年月日

      昨天时间显示昨天+时间,不显示年月日

      昨天以前显示具体的年月日

代码如下:

public static String friendlyDate(Date date) {

		Date now = new Date();
		long ys = DateUtils.truncate(now, Calendar.YEAR).getTime();
		long ds = DateUtils.truncate(now, Calendar.DAY_OF_MONTH).getTime();
		long yd = DateUtils.truncate(date, Calendar.DAY_OF_MONTH).getTime();

		long n = now.getTime();

		long e = date.getTime();
		if (e < ys) {
			return new SimpleDateFormat("yyyy-MM-dd HH:mm").format(date);
		}
		if ((ds - yd) == (24 * 60 * 60 * 1000)) {
			return new SimpleDateFormat("昨天  HH:mm").format(date);
		}
		if (e < ds) {
			return new SimpleDateFormat("yyyy-MM-dd HH:mm").format(date);
		}
		if (n - e > 60 * 60 * 1000) {
			return new SimpleDateFormat("今天  HH:mm").format(date);
		}
		if (n - e > 60 * 1000) {
			return (long) Math.floor((n - e) * 1d / 60000) + "分钟前";
		}
		if (n - e > 1 * 1000) {
			return "刚刚";
		}
		return new SimpleDateFormat("yyyy-MM-dd HH:mm").format(date);
	}
其中的年限判断为多余,但是为了以后修改,比如今年的时间只显示月和天,所以仍然做保留

你可能感兴趣的:(java)