티스토리 뷰
[string to date]
String thisDay = param.get("date").toString();
SimpleDateFormat transFormat = new SimpleDateFormat("yyyy-MM-dd");
Calendar calendar = Calendar.getInstance();
Date date = transFormat.parse(thisDay);
[date to string]
String nextDay = transFormat.format(date);
https://www.javatpoint.com/java-string-to-date
[string ad nextday]
String thisDay = param.get("date").toString();
SimpleDateFormat transFormat = new SimpleDateFormat("yyyy-MM-dd");
Calendar calendar = Calendar.getInstance();
Date date = transFormat.parse(thisDay);
calendar.setTime(date);
calendar.add(Calendar.DATE,1);
String nextDay = transFormat.format(calendar.getTime());
'spring memo' 카테고리의 다른 글
scope 데이터 바인딩 (0) | 2018.08.23 |
---|---|
datePicker (0) | 2018.08.13 |
ajax로 넘겨받은 데이터의 key 찾기 (0) | 2018.07.20 |
jsp 엑셀 컨트롤 (0) | 2018.07.18 |
spring ajax에서 보낸 list json을 java에서 받기 (0) | 2018.07.17 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Redux
- Spring
- JSON
- datePicker
- 리액트
- Progressbar
- list
- value
- input
- React
- ajax
- Props
- JSX
- 스프링
- html
- paging
- 클래스형
- module
- hooks
- hashmap
- JSP
- java
- nodeJS
- date
- typescript
- javascript
- 함수형
- angular
- webpack
- script
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함