- 간단한 예제
- HTTPS Client 프로그램입니다.
- 물론 아래의 예제를 사용하면 인증서 관련 에러가 발생될 수 있습니다.
- 이에 관련하여 아래의 포스팅을 참고해 주세요.
package foo; import java.net.URL; import java.io.*; import javax.net.ssl.HttpsURLConnection; public class JavaHttpsExample { public static void main(String[] args) throws Exception { String httpsURL = "https://your.https.url.here/"; URL myurl = new URL(httpsURL); HttpsURLConnection con = (HttpsURLConnection)myurl.openConnection(); InputStream ins = con.getInputStream(); InputStreamReader isr = new InputStreamReader(ins); BufferedReader in = new BufferedReader(isr); String inputLine; while ((inputLine = in.readLine()) != null) { System.out.println(inputLine); } in.close(); } }
출처: http://alvinalexander.com/blog/post/java/simple-https-example
'Languages > Java' 카테고리의 다른 글
Java-HTTPS 주소의 파일 다운로드 (0) | 2013.10.16 |
---|---|
JAVA-현재 시간의 날짜 간단하게 표현하기 (0) | 2013.03.07 |
Bad version number in .class file` faultDetail:`null` (0) | 2012.08.15 |
JAVA excute / excuteUpdate / excuteQuery 차이점 (0) | 2012.08.15 |
JAVA - JDBC, Supported Database, JDBC Drivers, and Deployment Containers (0) | 2012.08.15 |