public static String minuteToHour(long minutes) {
long hours = (long) Math.floor(minutes / 60);
long minute = minutes % 60;
if (0 == minute) {
return hours + "小时";
} else if (hours > 0) {
return hours + "小时" + minute + "分钟";
} else {
return minute + "分钟";
}
}