httpclient-4.3과 4.1을 기반으로 한 작은 예 작성
2044 단어 httpclient
/**
* httpclient-4.3.3.jar httpcore-4.3.2.jar
* @param url
* @throws Exception
*/
private static void newgo(String url) throws Exception {
CloseableHttpClient client = HttpClients.createDefault();
HttpGet httpGet = new HttpGet(url);
CloseableHttpResponse httpResponse = client.execute(httpGet);
int statusCode = httpResponse.getStatusLine().getStatusCode();
if (statusCode != HttpStatus.SC_OK) {
System.err.println("Method failed: " + statusCode);
} else {
HttpEntity entity = httpResponse.getEntity();
System.out.println(EntityUtils.toString(entity));
System.out.println("invoke success!");
}
}
/**
* httpclient-4.1.jar httpcore-4.1.jar
* @param url
* @throws Exception
*/
private static void go(String url) throws Exception {
HttpClient client = new DefaultHttpClient();
client.getParams().setIntParameter("http.socket.timeout", 10000);
client.getParams().setIntParameter("http.connection.timeout", 5000);
HttpGet httpGet = new HttpGet(url);
HttpResponse httpResponse = client.execute(httpGet);
int statusCode = httpResponse.getStatusLine().getStatusCode();
if (statusCode != HttpStatus.SC_OK) {
System.err.println("Method failed: " + statusCode);
} else {
HttpEntity entity = httpResponse.getEntity();
System.out.println(EntityUtils.toString(entity));
System.out.println("invoke success!");
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
HttpClient 'GET' - 각도 단순화이봐, 친구들. 오늘 저는 API를 호출하는 Angular의 방법을 분석하고 싶습니다. 각 CRUD 작업에 대한 기사를 작성할 예정이므로 눈을 떼지 말고 팔로우하십시오! 이것이 기본이며 Angular 웹 사이트에서 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.