[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());
'프로그래밍 > Java' 카테고리의 다른 글
[Java] 문자열 내 문자열 검색 (0) | 2014.05.09 |
---|---|
[Java] 문자열 내 큰따옴표 넣기 (0) | 2014.05.09 |
[Java] String -> int , int - > String 변환 (0) | 2014.05.08 |
[Java] java.lang.IllegalStateException: Cannot create a session after the response has been committed (2) | 2014.04.21 |
[Java] "\" replace 하기 (0) | 2014.04.11 |