文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Java实现以form-data形式文件上传到服务器

2023-08-31 07:25

关注

Java实现以form-data形式文件上传到服务器

package com.joolun.cloud.mall.common.util;import com.alibaba.fastjson.JSON;import com.alibaba.fastjson.JSONObject;import lombok.extern.slf4j.Slf4j;import org.apache.http.Consts;import org.apache.http.HttpEntity;import org.apache.http.HttpResponse;import org.apache.http.HttpStatus;import org.apache.http.client.config.RequestConfig;import org.apache.http.client.methods.HttpPost;import org.apache.http.entity.ContentType;import org.apache.http.entity.mime.HttpMultipartMode;import org.apache.http.entity.mime.MultipartEntityBuilder;import org.apache.http.entity.mime.content.StringBody;import org.apache.http.impl.client.CloseableHttpClient;import org.apache.http.impl.client.HttpClients;import org.apache.http.util.EntityUtils;import org.springframework.web.multipart.MultipartFile;import java.io.IOException;import java.nio.charset.StandardCharsets;import java.util.Map;@Slf4jpublic class HttpFileUtil {public static String doPostFormData(String url, String fileParamName, MultipartFile multipartFile, Map<String, String> paramMap) {log.info("文件参数名称"+fileParamName);// 创建Http实例CloseableHttpClient httpClient = HttpClients.createDefault();// 创建HttpPost实例HttpPost httpPost = new HttpPost(url);// 请求参数配置RequestConfig requestConfig = RequestConfig.custom().setSocketTimeout(60000).setConnectTimeout(60000).setConnectionRequestTimeout(10000).build();httpPost.setConfig(requestConfig);//请求头设置try {MultipartEntityBuilder builder = MultipartEntityBuilder.create();builder.setCharset(StandardCharsets.UTF_8);builder.setMode(HttpMultipartMode.BROWSER_COMPATIBLE);String fileName = multipartFile.getOriginalFilename();// 文件流builder.addBinaryBody(fileParamName, multipartFile.getInputStream(), ContentType.MULTIPART_FORM_DATA, fileName);//表单中其他参数,如果没有其他参数可以注释该部分for(Map.Entry<String, String> entry: paramMap.entrySet()) {builder.addPart(entry.getKey(),new StringBody(entry.getValue(), ContentType.create("text/plain", Consts.UTF_8)));}log.info("builder"+builder);HttpEntity entity = builder.build();httpPost.setEntity(entity);log.info("请求url:"+url);log.info("请求参数:"+paramMap.toString());// 执行提交HttpResponse response = httpClient.execute(httpPost);if (response.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {// 返回String res = EntityUtils.toString(response.getEntity(), StandardCharsets.UTF_8);log.info("请求返回数据"+res);JSONObject resJson= JSON.parseObject(res);if ("200".equals(resJson.get("code").toString())) {JSONObject data = (JSONObject) resJson.get("data");return data.get("fileUrl").toString();}return res;}} catch (Exception e) {e.printStackTrace();} finally {if (httpClient != null) {try {httpClient.close();} catch (IOException e) {e.printStackTrace();}}}return null;}}

来源地址:https://blog.csdn.net/XuDream/article/details/130583756

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-服务器
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯