Java Delete请求工具类DeleteUtil

DeleteUtil是一个Java类,使用ApacheHTTP客户端库执行DELETE类型的HTTP请求。它接受URL和自定义头部信息,发送请求并返回响应的实体内容。核心方法是doAction,它配置请求头,执行请求,并处理响应。
摘要由CSDN通过智能技术生成

DeleteUtil

import java.util.Map;
import java.io.IOException;

import org.apache.http.HttpEntity;
import org.apache.http.util.EntityUtils;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.client.methods.HttpDelete;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.client.methods.CloseableHttpResponse;

/**
 * DELETE请求工具类
 */
public class DeleteUtil {
    public static final String UTF8 = "utf-8";

    public static String send(String url, Map<String, String> headers) throws IOException {
        return doAction(url, headers);
    }

    private static String doAction(String url, Map<String, String> headers) throws IOException {
        HttpDelete delete = new HttpDelete(url);
        for (String key : headers.keySet()) {
            delete.addHeader(key, headers.get(key));
        }

        CloseableHttpClient client = HttpClients.createDefault();
        CloseableHttpResponse response = client.execute(delete);
        HttpEntity entity = response.getEntity();

        String result = null;
        if (entity != null) {
            result = EntityUtils.toString(entity, UTF8);
        }

        response.close();
        return result;
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值