본문 바로가기

예제21

Java DateTimeFormatter VS SimpleDateFormat DateTimeFormatter VS SimpleDateFormat Java 8 버전에서 날짜와 관련된 많은 클래스가 개선되었다. 그 중에 하나가 Local~ 시리즈인데, 이와 함께 기존 SimpleDateFormat 클래스의 개선된 버전인 DateTimeFormatter가 소개되었다. 스레드 안전성: DateTimeFormatter는 스레드 안전하므로, 여러 스레드가 동일한 인스턴스를 문제없이 사용할 수 있다. 반면에, SimpleDateFormat은 스레드 안전하지 않다. 불변성: DateTimeFormatter는 불변객체로서, 한 번 인스턴스를 생성하면 그 속성을 변경할 수 없다. 유연성 및 오류 처리: DateTimeFormatter는 SimpleDateFormat보다 포맷팅 옵션 측면에서 더 다.. 2023. 12. 1.
PostgreSQL 테이블 CRUD 쿼리 예제 Create Query CREATE TABLE cars ( id serial PRIMARY KEY, make text NOT NULL, model text NOT NULL, year integer NOT NULL, color text NOT NULL, created_at timestamp DEFAULT now() NOT NULL ); text 데이터 타입은 데이터의 최대길이를 모르거나 데이터 길이가 큰 경우 varchar 보다 효율적입니다. 하지만 최대 길이를 알고 그 길이가 1000 바이트내 ( 물론 이 기준은 상황에 따라 다릅니다. )라면 varchar를 사용하는 것이 더 효과적입니다. 쿼리 퍼포먼스, 데이터 공간에서 text보다 더 효육적입니다. binary data는 bytea를 사용합니다. In.. 2023. 2. 6.
Java 11 주요 특징 with 예제 샘플 코드 Java 11 버전에서 추가된 주요 기능을 알아봅니다. 1. HTTP2 클라이언트 - HttpClient 클래스를 사용하여 HTTP2 프로토콜 사용을 지원합니다. - 다음은 HTTP2를 사용하여 네이버에 요청을 보내는 코드입니다. HttpClient client = HttpClient.newHttpClient(); HttpRequest request = HttpRequest.newBuilder() .uri(URI.create("https://www.naver.com")) .GET() .build(); client.sendAsync(request, BodyHandlers.ofString()) .thenApply(HttpResponse::body) .thenAccept(System.out::println) .. 2023. 1. 28.
Pandas query 사용, 다중 조건, Like 검색 등 예제 Pandas Query¶ Query함수를 사용하여 데이터 조건식 적용 In [1]: import pandas as pd In [2]: # Set up data dataset_url= "https://archive.ics.uci.edu/ml/machine-learning-databases/car/car.data" df = pd.read_csv(dataset_url, names=['buying', 'maint', 'doors', 'persons', 'lug_boot', 'safety'], header=None) df.reset_index(drop=True, inplace=True) 데이터 출처 In [3]: df.head(5) Out[3]: buying maint doors persons lug_boot s.. 2022. 11. 9.