apache 의 httpclient 를 자세히 설명 합 니 다.
2342 단어 httpclient
아무 말 도 하지 않 고 코드 를 직접 올 리 면 위 에 주석 이 있 습 니 다.
int timeOut = 5000;
String URL = "http://localhost/xx.do?method=xxx&xxx=XXX"; // GET , get URL
String charSet = "GBK";
HttpClient http = new HttpClient(); // httpClient
http.getHttpConnectionManager().getParams()
.setConnectionTimeout(timeOut);//
http.getHttpConnectionManager().getParams()
.setParameter("http.socket.timeout", timeOut);//
/*
* get GETMETHOD*
*/
GetMethod method = new GetMethod(URL);// URL GETMETHOD
http.executeMethod(method);// HTTPCLIENT URL
int statusCOde = method.getStatusCode();// 200,404 , HttpStatus
method.getRequestHeaders();
method.getResponseBody();
http.executeMethod(method);
method.getStatusCode();
method.releaseConnection();
/*
* method.get get GETMETHOD*
*/
/*
* POST GETMETHOD*
*/
PostMethod httppost = new PostMethod(URL);
Map<String, Object> parameters = new HashMap<String, Object>(); // Post
// ,
httppost.setRequestHeader("Content-Type",
"application/x-www-form-urlencoded;charset=" + charSet);
int pairNum = parameters.size();
NameValuePair[] parametersBody = new NameValuePair[pairNum];
for (String key : parameters.keySet()) { //
String value = (String) parameters.get(key);
NameValuePair p = new NameValuePair(
URLEncoder.encode(key, charSet), URLEncoder.encode(value,
charSet));
parametersBody[--pairNum] = p;
}
httppost.setRequestBody(parametersBody);
http.executeMethod(httppost);
httppost.getRequestHeaders();// ......
httppost.getResponseBodyAsString();// ,,,,...
// .
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
HttpClient 'GET' - 각도 단순화이봐, 친구들. 오늘 저는 API를 호출하는 Angular의 방법을 분석하고 싶습니다. 각 CRUD 작업에 대한 기사를 작성할 예정이므로 눈을 떼지 말고 팔로우하십시오! 이것이 기본이며 Angular 웹 사이트에서 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.