728x90
반응형
날짜 더하기
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
Date date = format.parse("날짜입력");
Calender cal = Calender.getInstance();
cal.setTime(date);
cal.add(Calender.DATE, 일수);
cal.add(Calender.MONTH, 월수);
String <-> Date 변환
1. String To Date
String from = "2018-09.06 11:11:11";
SimpleDateFormat fm = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date to = fm.parse(from);
2. Date To String
Date from = new Date();
SimpleDateFormat fm = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String to = fm.format(from);
Calender -> String 변환
// SimpleDateForamt, Calender 값 있을 경우
String strDate = fm.format(cal.getTime());
728x90
반응형
'Java & JSP' 카테고리의 다른 글
[myBatis] myBatis에서 insert한 row의 id값 바로 가져오기 (1) | 2018.09.25 |
---|---|
[JSTL] <c:foreach> status 변수 활용 (0) | 2018.09.19 |
[MySQL] mac에서 mysql 접속 오류 해결 (user/local/mysql/data directory is not owned by the mysql or _mysql user) (0) | 2018.08.29 |
[Java] 추상화 관련 정리 (0) | 2018.07.27 |
[DB-error] mybatis Mapped Statements collection does not 에러 해결 (0) | 2018.06.02 |