httpClient 의 get 방법
2065 단어 httpclient
public class HttpClientTest {
public static void main(String[] args) {
HttpClient httpClient = new HttpClient();
GetMethod getMethod = new GetMethod("http://www.sina.com.cn");
getMethod.getParams().setParameter(HttpMethodParams.RETRY_HANDLER,
new DefaultHttpMethodRetryHandler());
try {
int statusCode = httpClient.executeMethod(getMethod);
System.out.println("charset-->" + getMethod.getResponseCharSet());
// Header head = getMethod.getResponseHeader("Content-Type");
// System.out.println(head.getValue());
Header[] headers=getMethod.getResponseHeaders();
for (Header header : headers) {
System.out.println(header.getName()+" "+header.getValue());
}
if (statusCode != HttpStatus.SC_OK) {
System.err.println("Method failed: "
+ getMethod.getStatusLine());
}
//
// byte[] responseBody = getMethod.getResponseBody();
// System.out.println(new String(responseBody));
//
InputStream in = getMethod.getResponseBodyAsStream();
byte[] responseBodyByte = null;
if (in!=null)
{
byte[] tmp = new byte[4096];
int bytesRead = 0;
ByteArrayOutputStream buffer = new ByteArrayOutputStream();
while((bytesRead = in.read(tmp))!=-1)
{
buffer.write(tmp,0,bytesRead);
}
responseBodyByte = buffer.toByteArray();
}
System.out.println(new String(responseBodyByte));
} catch (HttpException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}finally{
getMethod.releaseConnection();
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
HttpClient 'GET' - 각도 단순화이봐, 친구들. 오늘 저는 API를 호출하는 Angular의 방법을 분석하고 싶습니다. 각 CRUD 작업에 대한 기사를 작성할 예정이므로 눈을 떼지 말고 팔로우하십시오! 이것이 기본이며 Angular 웹 사이트에서 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.