java中日期时间的加减

	     //得到实际日期
		Date entryTime = empTimeTable.getEntryTime();
		System.out.println(new SimpleDateFormat("yyyy-MM-dd").format(entryTime));
		//创建日历对象
		Calendar cal = Calendar.getInstance();
		//将时间日期数据传入日历对象
		cal.setTime(entryTime);
		//设置月份加1
		cal.add(cal.MONTH, +1);
		//获取到加1的月份
		Date time = cal.getTime();
		System.out.println(new SimpleDateFormat("yyyy-MM-dd").format(time));

你可能感兴趣的:(java)