-HttpClient5
https://www.baeldung.com/httpclient-timeout
https://www.baeldung.com/java-http-response-body-as-string
-HttpClient
http://jinwooe.blogspot.kr/2013/12/apache-httpclient-https.html
http://202psj.tistory.com/145
성공체크 - https://hc.apache.org/httpcomponents-client-ga/httpclient/examples/org/apache/http/examples/client/ClientWithResponseHandler.java
HttpResponse response = httpClient.execute(get);
int status = response.getStatusLine().getStatusCode();
if (status >= 200 && status < 300) {
//성공시 체크
}
'java' 카테고리의 다른 글
특정자리수, 특정문자로 채우기 (0) | 2016.05.20 |
---|---|
Java Properties 사용방법 (0) | 2015.11.11 |
자바 한글인코딩 문제 모음 (0) | 2015.08.06 |
쓰레드 순차실행 (0) | 2015.06.16 |
UNIX 배치 프로그램(자바) 실행시 start,stop,alive shell script (0) | 2015.05.21 |