明明是天却显示年,用电脑的计算器计算是对的,刚开始没注意,仔细一看,代码段背景是淡黄色的,鼠标悬浮提示:Numeric overflow
https://blog.csdn.net/qq_30290513/article/details/77948008
整数后面加 L 就行了。
long ms = date1.getTime() - date.getTime();
if (Math.floor((double)ms/(1000L*60L*60L*24L*365L)) >= 1) {
title += ms/(1000L*60L*60L*24L*365L) + "年";
} else if (Math.floor((double)ms/(1000L*60L*60L*24L*30L)) >= 1) {
title += ms/(1000L*60L*60L*24L*30L) + "月";
} else if (Math.floor((double)ms/(1000*60*60*24)) >= 1) {
title += ms/(1000*60*60*24) + "天";
}