获取时间的下一天、周、月工具类
摘要:
public class DateUtil { private final static SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); /** * 按传输时间返回时间的下一天 * @param date 传输时间 * @param day 天数左右移动,0-返回当前天 * @return 下一天 */ public static String getNextDay(Date date, int day){ Cale... 阅读全文
posted @ 2013-08-04 00:32 阳光总在风雨后001 阅读(791) 评论(0) 推荐(0) 编辑