반응형
#java #SimpleFormat #Calendar #yesterday #yyyyMMdd
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd");
SimpleDateFormat sdf2 = new SimpleDateFormat("yyyyMM");
Calendar c1 = Calendar.getInstance();
c1.add(Calendar.DATE, -1); // 오늘날짜로부터 -1
String yesterday = sdf.format(c1.getTime()); // String으로 저장
String yesterMon = sdf2.format(c1.getTime()); // String으로 저장
반응형
'프로그래밍 > JAVA' 카테고리의 다른 글
[POI] POI 엑셀 - Using newlines in cells ( 셀에서 줄바꿈 ) (0) | 2019.12.30 |
---|---|
[Java] 문자열 치환(Replace) 사용법 & 예제 (0) | 2019.12.30 |
String으로 된 날짜에 일자를 더해서 세팅 (0) | 2019.12.05 |
NumberformatException ,if , 문자 1글자 비교, equals , MyBatis (0) | 2019.12.02 |
JSTL - <c:set> 태그 사용법 (0) | 2019.11.22 |