자바 파충류 사용 HttpClient 아 날로 그 브 라 우 저 전송 요청 방법 상세 설명

0.요약
0.1 의존 도 추가

<dependency>
  <groupId>org.apache.httpcomponents</groupId>
  <artifactId>httpclient</artifactId>
  <version>4.5.2</version>
</dependency>
0.2 코드

//1.         httpclient  
CloseableHttpClient httpClient = HttpClients.createDefault();
//2.     
HttpGet httpGet = new HttpGet("http://www.baidu.com");
//3.     
CloseableHttpResponse httpResponse = httpClient.execute(httpGet);
//4.     
HttpEntity httpEntity = httpResponse.getEntity();
//5.     
String result = EntityUtils.toString(httpEntity, "utf-8");
System.out.println(result);
1.실습
1.1 의존 도 추가
1.1.1 pom.xml 를 찾 아 의존 도 를 추가 합 니 다.

1.1.2 의존 코드

<dependency>
  <groupId>org.apache.httpcomponents</groupId>
  <artifactId>httpclient</artifactId>
  <version>4.5.2</version>
</dependency>
1.2 TestHttpClient 클래스 추가
1.2.1 클래스 파일 com.aifu.TestHttpClient 만 들 기

1.2.2 코드 추가

public static void main(String[] args) throws IOException {
  //1.         httpclient  
  CloseableHttpClient httpClient = HttpClients.createDefault();
  //2.     
  HttpGet httpGet = new HttpGet("http://www.baidu.com");
  //3.     
  CloseableHttpResponse httpResponse = httpClient.execute(httpGet);
  //4.     
  HttpEntity httpEntity = httpResponse.getEntity();
  //5.     
  String result = EntityUtils.toString(httpEntity, "utf-8");
  System.out.println(result);
}
1.3 실행
1.3.1 녹색 표지 판 을 클릭 하여 실행 하거나 단축 키 ctrl+alt+F10

자바 파충류 의 HttpClient 사용 시 뮬 레이 션 브 라 우 저 전송 요청 방법 에 대한 자세 한 내용 은 여기 소개 되 어 있 습 니 다.더 많은 자바 파충류 HttpClient 시 뮬 레이 션 브 라 우 저 전송 요청 내용 은 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 많은 지원 바 랍 니 다!

좋은 웹페이지 즐겨찾기