자바의 HTTP 통신 라이브러리
Intro 자바 1.1부터 HTTP 통신을 위한 클라이언트 라이브러리가 JDK 에 제공되었다. HTTP 통신을 위해 제공된 라이브러리를 사용하거나, 외부 라이브러리를 추가해서 사용할 수 있다. HttpURLConnection // 요청 경로 URL url = new URL(""); // 연결 HttpURLConnection connection = (HttpURLConnection) url.openConnection(); // 헤더, 요청 방식 설정 connection.setRequestProperty("accept", "application/json"); // 요청 생성 InputStream responseStream = connection.getInputStream(); // Json 변환 (Objec..
2024.02.09