Apache HttpClient - การใช้ Proxy
พร็อกซีเซิร์ฟเวอร์เป็นเซิร์ฟเวอร์ตัวกลางระหว่างไคลเอนต์และอินเทอร์เน็ต พร็อกซีเซิร์ฟเวอร์มีฟังก์ชันพื้นฐานดังต่อไปนี้ -
การกรองข้อมูลไฟร์วอลล์และเครือข่าย
การแบ่งปันการเชื่อมต่อเครือข่าย
แคชข้อมูล
การใช้ไลบรารี HttpClient คุณสามารถส่งคำขอ HTTP โดยใช้พร็อกซี ทำตามขั้นตอนด้านล่าง -
ขั้นตอนที่ 1 - สร้างวัตถุ HttpHost
เริ่มต้นไฟล์ HttpHost คลาสของ org.apache.http แพ็กเกจโดยส่งพารามิเตอร์สตริงที่แสดงชื่อของโฮสต์พร็อกซี (ซึ่งคุณต้องการให้ส่งคำขอ) ไปยังตัวสร้าง
//Creating an HttpHost object for proxy
HttpHost proxyHost = new HttpHost("localhost");
ในทำนองเดียวกันให้สร้างอ็อบเจ็กต์ HttpHost อื่นเพื่อแสดงโฮสต์เป้าหมายที่ต้องการส่งคำขอ
//Creating an HttpHost object for target
HttpHost targetHost = new HttpHost("google.com");
ขั้นตอนที่ 2 - สร้างวัตถุ HttpRoutePlanner
HttpRoutePlannerอินเทอร์เฟซคำนวณเส้นทางไปยังโฮสต์ที่ระบุ สร้างออบเจ็กต์ของอินเทอร์เฟซนี้โดยการสร้างอินสแตนซ์DefaultProxyRoutePlannerคลาสการใช้งานอินเทอร์เฟซนี้ ในฐานะพารามิเตอร์ของตัวสร้างให้ส่งผ่านโฮสต์พร็อกซีที่สร้างไว้ด้านบน -
//creating a RoutePlanner object
HttpRoutePlanner routePlanner = new DefaultProxyRoutePlanner(proxyhost);
ขั้นตอนที่ 3 - ตั้งค่าตัววางแผนเส้นทางเป็นตัวสร้างลูกค้า
ใช้ custom() วิธีการของ HttpClients ชั้นเรียนสร้างไฟล์ HttpClientBuilder วัตถุและสำหรับวัตถุนี้ตั้งค่าตัววางแผนเส้นทางที่สร้างไว้ด้านบนโดยใช้ setRoutePlanner() วิธี.
//Setting the route planner to the HttpClientBuilder object
HttpClientBuilder clientBuilder = HttpClients.custom();
clientBuilder = clientBuilder.setRoutePlanner(routePlanner);
ขั้นตอนที่ 4 - สร้างวัตถุ CloseableHttpClient
สร้างไฟล์ CloseableHttpClient โดยเรียกไฟล์ build() วิธี.
//Building a CloseableHttpClient
CloseableHttpClient httpClient = clientBuilder.build();
ขั้นตอนที่ 5 - สร้าง HttpGetobject
สร้างคำขอ HTTP GET โดยสร้างอินสแตนซ์ไฟล์ HttpGet ชั้นเรียน
//Creating an HttpGet object
HttpGet httpGet = new HttpGet("/");
ขั้นตอนที่ 6 - ดำเนินการตามคำขอ
หนึ่งในรูปแบบของ execute() วิธีการยอมรับไฟล์ HttpHost และ HttpRequestวัตถุและดำเนินการตามคำขอ ดำเนินการตามคำขอโดยใช้วิธีนี้ -
//Executing the Get request
HttpResponse httpResponse = httpclient.execute(targetHost, httpGet);
ตัวอย่าง
ตัวอย่างต่อไปนี้สาธิตวิธีส่งคำขอ HTTP ไปยังเซิร์ฟเวอร์ผ่านพร็อกซี ในตัวอย่างนี้เรากำลังส่งคำขอ HTTP GET ไปยัง google.com ผ่าน localhost เราได้พิมพ์ส่วนหัวของคำตอบและเนื้อหาของการตอบกลับ
import org.apache.http.Header;
import org.apache.http.HttpEntity;
import org.apache.http.HttpHost;
import org.apache.http.HttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.conn.routing.HttpRoutePlanner;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.impl.conn.DefaultProxyRoutePlanner;
import org.apache.http.util.EntityUtils;
public class RequestViaProxyExample {
public static void main(String args[]) throws Exception{
//Creating an HttpHost object for proxy
HttpHost proxyhost = new HttpHost("localhost");
//Creating an HttpHost object for target
HttpHost targethost = new HttpHost("google.com");
//creating a RoutePlanner object
HttpRoutePlanner routePlanner = new DefaultProxyRoutePlanner(proxyhost);
//Setting the route planner to the HttpClientBuilder object
HttpClientBuilder clientBuilder = HttpClients.custom();
clientBuilder = clientBuilder.setRoutePlanner(routePlanner);
//Building a CloseableHttpClient
CloseableHttpClient httpclient = clientBuilder.build();
//Creating an HttpGet object
HttpGet httpget = new HttpGet("/");
//Executing the Get request
HttpResponse httpresponse = httpclient.execute(targethost, httpget);
//Printing the status line
System.out.println(httpresponse.getStatusLine());
//Printing all the headers of the response
Header[] headers = httpresponse.getAllHeaders();
for (int i = 0; i < headers.length; i++) {
System.out.println(headers[i]);
}
//Printing the body of the response
HttpEntity entity = httpresponse.getEntity();
if (entity != null) {
System.out.println(EntityUtils.toString(entity));
}
}
}
เอาต์พุต
ในการดำเนินการโปรแกรมด้านบนจะสร้างผลลัพธ์ต่อไปนี้ -
HTTP/1.1 200 OK
Date: Sun, 23 Dec 2018 10:21:47 GMT
Server: Apache/2.4.9 (Win64) PHP/5.5.13
Last-Modified: Tue, 24 Jun 2014 10:46:24 GMT
ETag: "2e-4fc92abc3c000"
Accept-Ranges: bytes
Content-Length: 46
Content-Type: text/html
<html><body><h1>It works!</h1></body></html>