JAVA获取下一天日期

easy

	/*
	* 获取下一天日期
	* */
	public static Date getNextDay(){
		try{
			Thread.sleep(24*60*60*1000);
		}catch (InterruptedException e){
			e.printStackTrace();
		}
		return new Date();
	}

  

yian
原文地址:https://www.cnblogs.com/xiangpeng/p/14734178.html