Apache HttpClient HTML表单POST请求示例

x33g5p2x  于2022-10-07 转载在 Apache  
字(5.1k)|赞(0)|评价(0)|浏览(1183)

在这篇快速文章中,我们将讨论如何使用Apache HttpClient 4.5+来处理HTML表单。

使用HTML表单

许多应用程序需要模拟提交HTML表单的过程,例如,为了登录一个Web应用程序或提交输入数据,HttpClient提供了实体类UrlEncodedFormEntity来促进这一过程。

  1. List<NameValuePair> formparams = new ArrayList<NameValuePair>();
  2. formparams.add(new BasicNameValuePair("param1", "value1"));
  3. formparams.add(new BasicNameValuePair("param2", "value2"));
  4. UrlEncodedFormEntity entity = new UrlEncodedFormEntity(formparams, Consts.UTF_8);
  5. HttpPost httppost = new HttpPost("http://localhost/handler.do");
  6. httppost.setEntity(entity);

UrlEncodedFormEntity实例将使用所谓的URL编码对参数进行编码并产生以下内容:

  1. param1=value1&param2=value2

HttpClient支持HTTP/1.1规范中定义的所有HTTP方法:GETHEADPOSTPUTDELETETRACEOPTIONS。每个方法类型都有一个特定的类:HttpGetHttpHeadHttpPostHttpPutHttpDeleteHttpTraceHttpOptions
在这个例子中,我们将使用HttpPost类来处理POST HTTP方法。

使用Apache HttpClient--Maven依赖性

Apache HttpClient库可以处理HTTP请求。要使用这个库,请在你的Maven或Gradle构建文件中添加一个依赖项。你可以在这里找到最新版本:https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient

我们使用maven来管理我们的依赖,并使用Apache HttpClient 4.5版本。在你的项目中添加以下依赖项。

  1. <dependency>
  2. <groupId>org.apache.httpcomponents</groupId>
  3. <artifactId>httpclient</artifactId>
  4. <version>4.5</version>
  5. </dependency>

开发步骤

1. 使用辅助类HttpClients创建CloseableHttpClient的实例。

  1. CloseableHttpClient httpclient = HttpClients.createDefault()

HttpClients.createDefault()方法以默认配置创建CloseableHttpClient实例。

2. 创建一个基本的POST请求

  1. HttpPost httpPost = new HttpPost("http://httpbin.org/post");

3. 准备好表单对象

  1. List<NameValuePair> form = new ArrayList<>();
  2. form.add(new BasicNameValuePair("John", "Cena"));
  3. form.add(new BasicNameValuePair("Tom", "Cruise"));
  4. form.add(new BasicNameValuePair("tony", "stark"));
  5. UrlEncodedFormEntity entity = new UrlEncodedFormEntity(form, Consts.UTF_8);

4. 创建一个自定义的响应处理程序

  1. ResponseHandler < String > responseHandler = response - > {
  2. int status = response.getStatusLine().getStatusCode();
  3. if (status >= 200 && status < 300) {
  4. HttpEntity entity = response.getEntity();
  5. return entity != null ? EntityUtils.toString(entity) : null;
  6. } else {
  7. throw new ClientProtocolException("Unexpected response status: " + status);
  8. }
  9. };

6. 通过execute()方法发送基本的POST请求

  1. String responseBody = httpclient.execute(httpPost, responseHandler);

提交HTML表单参数

在下面的例子中,我们向资源http://httpbin.org/post发布HTML表单参数。这个资源会确认数据并返回一个JSON对象,我们将简单地将其打印到控制台。当发送HTML表单参数时,你通常应该将内容类型设置为application/x-www-form-urlencoded,但Apache HttpClient会自动检测内容类型并进行相应设置。

  1. package com.javadevelopersguide.httpclient.examples;
  2. import org.apache.http.Consts;
  3. import org.apache.http.HttpEntity;
  4. import org.apache.http.NameValuePair;
  5. import org.apache.http.client.ClientProtocolException;
  6. import org.apache.http.client.ResponseHandler;
  7. import org.apache.http.client.entity.UrlEncodedFormEntity;
  8. import org.apache.http.client.methods.HttpPost;
  9. import org.apache.http.impl.client.CloseableHttpClient;
  10. import org.apache.http.impl.client.HttpClients;
  11. import org.apache.http.message.BasicNameValuePair;
  12. import org.apache.http.util.EntityUtils;
  13. import java.io.IOException;
  14. import java.util.ArrayList;
  15. import java.util.List;
  16. /**
  17. * This example demonstrates the use of {@link HttpPost} request method. And
  18. * sending HTML Form request parameters
  19. */
  20. public class HttpClientHttpFormExample {
  21. public static void main(String...args) throws IOException {
  22. try (CloseableHttpClient httpclient = HttpClients.createDefault()) {
  23. List < NameValuePair > form = new ArrayList < > ();
  24. form.add(new BasicNameValuePair("John", "Cena"));
  25. form.add(new BasicNameValuePair("Tom", "Cruise"));
  26. form.add(new BasicNameValuePair("tony", "stark"));
  27. UrlEncodedFormEntity entity = new UrlEncodedFormEntity(form, Consts.UTF_8);
  28. HttpPost httpPost = new HttpPost("http://httpbin.org/post");
  29. httpPost.setEntity(entity);
  30. System.out.println("Executing request " + httpPost.getRequestLine());
  31. // Create a custom response handler
  32. ResponseHandler < String > responseHandler = response - > {
  33. int status = response.getStatusLine().getStatusCode();
  34. if (status >= 200 && status < 300) {
  35. HttpEntity responseEntity = response.getEntity();
  36. return responseEntity != null ? EntityUtils.toString(responseEntity) : null;
  37. } else {
  38. throw new ClientProtocolException("Unexpected response status: " + status);
  39. }
  40. };
  41. String responseBody = httpclient.execute(httpPost, responseHandler);
  42. System.out.println("----------------------------------------");
  43. System.out.println(responseBody);
  44. }
  45. }
  46. }

输出

  1. Executing request POST http://httpbin.org/post HTTP/1.1
  2. ----------------------------------------
  3. {
  4. "args": {},
  5. "data": "",
  6. "files": {},
  7. "form": {
  8. "John": "Cena",
  9. "Tom": "Cruise",
  10. "tony": "stark"
  11. },
  12. "headers": {
  13. "Accept-Encoding": "gzip,deflate",
  14. "Connection": "close",
  15. "Content-Length": "31",
  16. "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8",
  17. "Host": "httpbin.org",
  18. "User-Agent": "Apache-HttpClient/4.5 (Java/1.8.0_172)"
  19. },
  20. "json": null,
  21. "origin": "49.35.12.218",
  22. "url": "http://httpbin.org/post"
  23. }

相关文章

最新文章

更多