java 转发上传文件

您所在的位置:网站首页 java转发post请求 java 转发上传文件

java 转发上传文件

#java 转发上传文件| 来源: 网络整理| 查看: 265

/*** 使用httpclint 发送文件

*@paramurl: 接口全路径

*@paramfile: 上传文件

*@paramfileParamName: 接口对应文件的参数名:[email protected]("fileParamName")

*@paramheaderParams: 请求头信息: 可能需要携带token,注意不要设置content-type

*@paramotherParams: 其他参数

*@return

*/

public static String uploadApiFile(String url ,MultipartFile file,String fileParamName,MapheaderParams,MapotherParams) {

CloseableHttpClient httpClient=HttpClients.createDefault();

String result= "";try{

String fileName=file.getOriginalFilename();

HttpPost httpPost= newHttpPost(url);//添加header

for (Map.Entrye : headerParams.entrySet()) {

httpPost.addHeader(e.getKey(), e.getValue());

}

MultipartEntityBuilder builder=MultipartEntityBuilder.create();

builder.setCharset(Charset.forName("utf-8"));

builder.setMode(HttpMultipartMode.BROWSER_COMPATIBLE);//加上此行代码解决返回中文乱码问题

builder.addBinaryBody(fileParamName, file.getInputStream(), ContentType.MULTIPART_FORM_DATA, fileName);//文件流

for (Map.Entrye : otherParams.entrySet()) {

builder.addTextBody(e.getKey(), e.getValue());//类似浏览器表单提交,对应input的name和value

}

HttpEntity entity=builder.build();

httpPost.setEntity(entity);

HttpResponse response= httpClient.execute(httpPost);//执行提交

HttpEntity responseEntity =response.getEntity();if (responseEntity != null) {//将响应内容转换为字符串

result = EntityUtils.toString(responseEntity, Charset.forName("UTF-8"));

}

}catch(IOException e) {

e.printStackTrace();

}catch(Exception e) {

e.printStackTrace();

}finally{try{

httpClient.close();

}catch(IOException e) {

e.printStackTrace();

}

}returnresult;

}



【本文地址】


今日新闻


推荐新闻


CopyRight 2018-2019 办公设备维修网 版权所有 豫ICP备15022753号-3