时间差 dateDifference

public static void main(String[] args) {
	// TODO Auto-generated method stub
	try {
		SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//设置日期格式
		String currentTime = df.format(new Date());// new Date()为获取当前系统时间
		String oldTime = "2013-12-29 12:13:22";// 之前查询的时间
		String aString = TimeDiff(oldTime, currentTime);
		System.out.println(aString);
	} catch (Exception e) {
		// TODO Auto-generated catch block
		e.printStackTrace();
	}
}

public static String TimeDiff(String oldTime, String newTime)
		throws Exception {
	SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
	Long beginL = format.parse(oldTime).getTime();
	Long endL = format.parse(newTime).getTime();
	Long year = (endL - beginL) / 86400000 / 30 / 12;
	Long month = (endL - beginL) / 86400000 / 30;
	Long day = (endL - beginL) / 86400000;
	Long hour = ((endL - beginL) % 86400000) / 3600000;
	Long min = ((endL - beginL) % 86400000 % 3600000) / 60000;
	if(year == 0){
		if(month == 0){
			if(day == 0){
				if(hour == 0){
					if(min > 0){
						return min+"分钟前";
					}else{
						return "刚刚";
					}
				}else{
					return hour+"小时前";
				}
			}else{
				return day+"天前";
			}
		}else{
			return month+"个月前";
		}
	}else{
		return year+"年前";
	}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值