티스토리 뷰
자바 1.8 이전 버전의 날짜 계산은 피곤하였다. 그래서 자바 1.8 버전 부터 새로 생긴 날짜 관련 클래스를 적극적으로 쓰려고 한다. 날짜(년월)를 파라미터로 받아서 그 날짜보다 이전 달(년월)을 구하려고 한다.
막상하려고 하니 어떻게 하는지 모르겠다 ㅎㅎ
구글링해서 감을 잡았고 나름 메소드로 만들어서 사용해보려고 한다.
LocalDate.of 를 사용하더라.. 그럼 함께 살펴보자.
package test;
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
/**
* [자바] 파라미터로 날짜(년월)을 받아 이전달(년월)를 리턴 localdate
*
*/
public class MinusOneMonthByPara {
public String get1BeforeYYYYMM(String yyyyMM) {
int year = Integer.parseInt( yyyyMM.substring(0, 4) );
int month = Integer.parseInt( yyyyMM.substring(4) );
int dayOfMonth = 1;
LocalDate now = LocalDate.of(year, month, dayOfMonth);
System.out.println("now="+now);
LocalDate before = now.minusMonths(1);
System.out.println("before="+before);
DateTimeFormatter formatter=DateTimeFormatter.ofPattern("yyyyMM");
String formatedBefore=before.format(formatter);
return formatedBefore;
}
public static void main(String[] args) {
String r = new MinusOneMonthByPara().get1BeforeYYYYMM("202303");
System.out.println("결과="+r);
}
}
결과
now=2023-03-01
before=2023-02-01
결과=202302
'자바(Java)' 카테고리의 다른 글
자바 서버 이름 얻기 ip 얻기 (0) | 2023.04.25 |
---|---|
400 에러 Bad Request (0) | 2023.04.25 |
자바 메일 javax.mail.MessagingException: Could not connect to SMTP host: , port: 25; (0) | 2023.03.09 |
리눅스 자바 콘솔에서 실행시 A JNI error has occurred java.lang.NoClassDefFoundError: javax/m (0) | 2023.03.08 |
자바 콘솔에서 실행시 A JNI error has occurred java.lang.NoClassDefFoundError: javax/mail/ (0) | 2023.03.08 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 스크래핑
- XE3
- 플러터
- 오라클
- webix
- KG
- 라이믹스 모듈
- 파싱
- 포인터
- MySQL
- 문자열
- xe addon
- XE
- JDBC
- C
- ocjap
- php
- 자바 smtp
- Python
- 자바
- C언어
- ocajp
- EC
- 인포믹스
- 파이썬
- 프로씨
- 이클립스
- proc
- esql
- xe애드온
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함