일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- OOP
- CSS
- array
- API
- Sort
- CLASS
- WebProgramming
- meta
- 노드
- 자료구조
- System
- request
- 악성코드
- beans
- c++
- windows
- function
- JavaScript
- 포인터
- UTF-8
- jsp
- 윈도우즈
- java
- Kafka
- query
- algorithm
- Call-by-reference
- 투자
- HTML
- C
Archives
- Today
- Total
hahahia
LocalDate / YearMonth 를 이용하여 특정 월의 일 수, 마지막 날 구하기 본문
통계 관련 작업을 하다가(해당 프로젝트는 JodaTime을 쓰지 않았음..) 지난 달 평균을 구하기 위해서 해당 월의 일 수를 구하는 방법을 찾다보니...
YearMonth 라는 Temporal 구현체를 알게 되었다.
아래 예제와 같이 해당 월의 일 수, 해당 월의 마지막 날을 구할 때 유용하게 활용할 수 있을 듯 하다.
import java.time.LocalDate;
import java.time.YearMonth;
import java.time.format.DateTimeFormatter;
public class Main {
public static void main(String[] args) {
String novemberDate = "2019-11-09";
/**
* YearMonth 객체 생성(from 함수로 LocalDate 객체를 파라미터로 넣어주면 된다)
*/
YearMonth novemberYearMonth = YearMonth.from(LocalDate.parse(novemberDate, DateTimeFormatter.ofPattern("yyyy-MM-dd")));
/**
* 해당 월의 일 수(int)
* */
System.out.println(novemberYearMonth.lengthOfMonth()); // 30
/**
* 해당 월의 마지막 날(LocalDate)
* */
System.out.println(novemberYearMonth.atEndOfMonth()); // 2019-11-30
}
}
'Language > Java' 카테고리의 다른 글
[Java] 상속을 이용한 프레임 창 띄우기 예제 (0) | 2012.10.13 |
---|---|
[Java] 생성자 예제 (0) | 2012.10.13 |
Comments