Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- duplicate lines
- 전송포맷
- change file content
- key bindings
- object
- javaascript
- spring boot
- not to accept jdbcUrl
- JavaScript
- maven
- remove
- docker
- spring
- gradle
- ubuntu
- jdbc
- ADB
- mariadb
- Jenkins
- pkgutil
- ^M바꾸기
- Java
- JAR
- 줄복사
- install
- install maven
- svn backup
- local
- Change port
- driverspy
Archives
- Today
- Total
Simplify
HttpURLConnection 을 이용한 HTTP 호출하기 (How to request HTTP url with HttpURLConnection) 본문
Web & Server/Spring & Spring Boot
HttpURLConnection 을 이용한 HTTP 호출하기 (How to request HTTP url with HttpURLConnection)
Simplify - Jonghun 2019. 6. 5. 08:35들어가며
Spring에서 Maven 으로 RestTemplate를 이용하지 않고 순수하게 Java에서의 Class를 이용해서 HTTP 호출하는 예제를 찾아 공유합니다.
구현방법
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 | import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.HttpURLConnection; import java.net.URL; public class Test01 { public static void main(String[] args) { BufferedReader in = null; try { URL obj = new URL("http://www.test.co.kr/test.jsp"); // 호출할 url HttpURLConnection con = (HttpURLConnection)obj.openConnection(); con.setRequestMethod("GET"); in = new BufferedReader(new InputStreamReader(con.getInputStream(), "UTF-8")); String line; while((line = in.readLine()) != null) { // response를 차례대로 출력 System.out.println(line); } } catch(Exception e) { e.printStackTrace(); } finally { if(in != null) try { in.close(); } catch(Exception e) { e.printStackTrace(); } } } } | cs |
출처 : https://overcome26.tistory.com/77 http://nine01223.tistory.com/229
'Web & Server > Spring & Spring Boot' 카테고리의 다른 글
IntelliJ 를 이용한 Spring Boot 프로젝트 생성하기(How to create Spring Boot Project with IntelliJ) (0) | 2019.06.07 |
---|---|
Spring 에서 Exit Code 활용하기 (How to handle exit code in Spring Framework) (0) | 2019.06.07 |
Spring Boot - (10) Restful 호출 모듈 (0) | 2018.10.10 |
Spring Boot - (9) Property, Authentication Principal (0) | 2018.10.10 |
Spring Boot - (8) Logback 상세화하기 (2) | 2018.10.08 |
Comments