사용법2 Java DateTimeFormatter VS SimpleDateFormat DateTimeFormatter VS SimpleDateFormat Java 8 버전에서 날짜와 관련된 많은 클래스가 개선되었다. 그 중에 하나가 Local~ 시리즈인데, 이와 함께 기존 SimpleDateFormat 클래스의 개선된 버전인 DateTimeFormatter가 소개되었다. 스레드 안전성: DateTimeFormatter는 스레드 안전하므로, 여러 스레드가 동일한 인스턴스를 문제없이 사용할 수 있다. 반면에, SimpleDateFormat은 스레드 안전하지 않다. 불변성: DateTimeFormatter는 불변객체로서, 한 번 인스턴스를 생성하면 그 속성을 변경할 수 없다. 유연성 및 오류 처리: DateTimeFormatter는 SimpleDateFormat보다 포맷팅 옵션 측면에서 더 다.. 2023. 12. 1. Curl 자주 사용하는 커맨드 예제 및 옵션( Json payload, POST, GET 등 ) 1. URL 헤더정보 $ curl -I www.naver.com HTTP/1.1 302 Moved Temporarily Server: NWS Content-Type: text/html Location: https://www.naver.com/ Date: Wed, 08 Feb 2023 06:03:35 GMT Connection: keep-alive2. 응답 body 출력 curl https://www.naver.com ata-clk="helpcenter">고객센터 ⓒ NAVER Corp. 3. POST 요청 curl -X POST -d "param1=value1¶m2=value2" https://example.com/api/submit4. POST 요청 ( json payload ) curl -H .. 2023. 2. 8. 이전 1 다음