HttpClient发送Post请求(一)

pom

<dependency>
    <groupId>org.apache.httpcomponents</groupId>
    <artifactId>httpclient</artifactId>
    <version>4.5.3</version>
</dependency>

code

package com.xxxxxx.xxxxx; 

import java.io.IOException;
import java.nio.charset.Charset;
import org.apache.http.HttpEntity;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;

/** 
 * @author wushucheng
 * @version 创建时间:2017年6月28日 下午5:20:23 
 * @TODO 类说明 
 */
public class HttpUtil {

    public static String post(String url, String body){

        String result = null;
        CloseableHttpClient client = null;
        CloseableHttpResponse response = null;
        try {
                client = HttpClients.createDefault();
                HttpPost httpPost = new HttpPost(url);
                StringEntity stringEntity = new StringEntity(body, Charset.forName("UTF-8"));
                httpPost.setEntity(stringEntity);
                response = client.execute(httpPost);
                HttpEntity entity = response.getEntity();
                result = EntityUtils.toString(entity);
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } finally{
            if(response != null){
                try {
                    response.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if(client != null){
                try {
                    client.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
    }

    return result;
    }

}

attention

以上代码可以发送 http/https post 请求

调用微信API的时候,若body存在中文,一定要进行 UTF-8 转码,否则会报错

`HttpClient` 是 Java 中用于发送 HTTP 请求的一个工具类,在 Apache HttpClient 框架下有 `HttpClient`, `HttpURLConnection` 和 `OkHttp` 等多种实现。为了介绍如何使用 `HttpClient` 发送 POST 请求并上传图片,我们首先需要了解一些基本的概念: 1. **POST 请求**:通常用于提交数据到服务器端进行处理。例如,用户输入表单信息并点击“提交”按钮时就会发起一个 POST 请求。 2. **上传文件**:通过 POST 请求将一个文件作为数据的一部分发送给服务器的过程就是文件上传。这通常涉及到表单字段携带文件名、文件类型等元数据以及实际的文件内容。 ### 使用 HttpClient 发送 POST 请求上传图片 以下是使用 Apache HttpClient 实现 POST 请求并上传图片的基本步骤: #### 步骤 1:导入依赖 如果使用 Maven 或 Gradle 进行项目管理,则需要添加对应的依赖: ```java <!-- For Maven --> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.x</version> </dependency> <!-- For Gradle --> implementation 'org.apache.httpcomponents:httpclient:4.5.x' ``` 请注意替换版本号为当前可用的最新版本。 #### 步骤 2:准备图片资源 假设您已经有一个文件路径指向了要上传的图片: ```java String filePath = "/path/to/image.png"; ``` #### 步骤 3:创建请求实体和 URL 构造 HTTP 请求: ```java URL url = new URL("https://example.com/upload"); HttpURLConnection connection = (HttpURLConnection) url.openConnection(); connection.setRequestMethod("POST"); connection.setDoOutput(true); ``` #### 步骤 4:设置请求头 添加必要的 HTTP 请求头,包括 `Content-Type` 和 `Content-Length`: ```java connection.setRequestProperty("Content-Type", "multipart/form-data; boundary=---------------------------968370886297881"); connection.setRequestProperty("Cache-Control", "no-cache"); connection.setRequestProperty("Postman-Token", "96e6a1d1-df2b-31e7-e5c4-c8255813d34c"); // 计算 Content-Length ``` #### 步骤 5:读取图片数据并构建请求体 使用 `FileInputStream` 读取图片,并构建请求体: ```java File file = new File(filePath); byte[] bytes = new byte[(int) file.length()]; try { FileInputStream fis = new FileInputStream(file); fis.read(bytes); fis.close(); // 构建边界分隔符 String boundary = "---------------------------968370886297881"; StringBuilder sb = new StringBuilder(); sb.append("--" + boundary).append("\r\n") .append("Content-Disposition: form-data; name=\"file\"; filename=\"" + file.getName() + "\"\r\n") .append("Content-Type: image/png\r\n\r\n") .append(new String(bytes)) .append("\r\n--" + boundary + "--\r\n"); OutputStream os = connection.getOutputStream(); os.write(sb.toString().getBytes()); os.flush(); } catch (IOException e) { throw new RuntimeException(e); } ``` #### 步骤 6:获取响应结果 最后,检查连接的状态码以确定请求是否成功: ```java int responseCode = connection.getResponseCode(); System.out.println("Response Code : " + responseCode); BufferedReader br = new BufferedReader(new InputStreamReader(connection.getInputStream())); String output; StringBuilder response = new StringBuilder(); while ((output = br.readLine()) != null) { response.append(output); } br.close(); ``` #### 步骤 7:关闭连接 结束会话: ```java connection.disconnect(); ``` ### 完整示例代码 完整的示例代码可以结合以上各步编写出来。记住,安全性、错误处理和异常管理非常重要,这里仅提供了一个基本框架。此外,对于生产环境的应用,通常建议使用更现代化、更安全的库如 `okhttp` 或者 `httpie` 来替代 `Apache HttpClient`。 ### 相关问题: 1. **如何验证上传的图片是否成功接收并存储于服务器?** 2. **如何优化图片上传性能和减少带宽消耗?** 3. **如何处理上传过程中可能出现的各种网络错误?**
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值