时间
Posted SDingBa
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了时间相关的知识,希望对你有一定的参考价值。
Date date = new Date();
Calendar calendarNow = Calendar.getInstance();
calendarNow.setTime(date);
String minute = DateTimeUtils.formatDate(calendarNow.getTime(), "mm");
int temp = Integer.parseInt(minute);
calendarNow.add(Calendar.MINUTE, -((temp % 30) + 30));
String time = DateTimeUtils.formatDate(calendarNow.getTime(), DateTimeUtils.SHORT_TIME_PATTERN);
以上是关于时间的主要内容,如果未能解决你的问题,请参考以下文章
Linux下文件的三种时间标记:访问时间修改时间状态改动时间 (转载)