-
Notifications
You must be signed in to change notification settings - Fork 0
Java
rhs edited this page Jul 9, 2021
·
11 revisions
-
package 명에 예약어 포함시 intellij 에서 package 인식 불가
- ex) io.exam.public 인식불가, io.exam.public-sample 인식불가
-
DateTimeFormatter
- YYYY: 해당이 속한 주 기준. 예를 들어 12월 29일은 12월의 마지막 주이나 2020년의 첫주로 계산해서 반환
- yyyy: 달력의 년도
-
file download 구현시 한글 깨짐 현상
HttpHeaders headers = new HttpHeaders();
ContentDisposition contentDisposition = ContentDisposition.builder("attachment").filename(file.getName(), StandardCharsets.UTF_8).build();
headers.set(HttpHeaders.CONTENT_DISPOSITION, contentDisposition.toString());