본문 바로가기

프로그래밍/JAVA

오늘 날짜에서 add day

오늘 날짜에서 원하는 일수를 더한 후 결과값 받기

 

//몇 일 이후 날짜를 원하는지 입력

int addDay = 5;

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Date date = new Date();
Calendar cal = Calendar.getInstance();
cal.setTime(date);
cal.add(Calendar.DATE, addDay);
String strDate = sdf.format(cal.getTime());

System.out.println(strDate);