[Java] Calender 년월일수정 / Calendar 를 String 으로 변환

2014. 5. 8. 17:28프로그래밍/Java

Calendar cal = Calendar.getInstance();

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");

Date date =  sdf.parse("2014-05-08");


cal.setTime(date);

cal.add(Calendar.YEAR, 3);  //년도 3증가

cal.add(Calendar.MONTH, 3);  //월 3증가

cal.add(Calendar.DATE, 3);  //일 3증가


//calendar -> String 변환

String strDate = sdf.format(cal.getTime());