首页 > 代码库 > 时间的算法

时间的算法

技术分享

 

public static void main(String[] args) {
        Date date = new Date();// 新建此时的的系统时间
        System.out.println(getNextDay(date));// 返回明天的时间
 
    }
 
    public static Date getNextDay(Date date) {
        Calendar calendar = Calendar.getInstance();
        calendar.setTime(date);
        calendar.add(Calendar.DAY_OF_MONTH, +20);//+1今天的时间加一天
        date = calendar.getTime();
        return date;
    }

时间的算法