자바 파충류 사용 HttpClient 아 날로 그 브 라 우 저 전송 요청 방법 상세 설명
2379 단어 자바파충HttpClient
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 시 뮬 레이 션 브 라 우 저 전송 요청 내용 은 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 많은 지원 바 랍 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.