当前位置:   article > 正文

RestTemplate方式请求发送multipart-form-data混合数据(包括多个文件和json字符串等)_resttemplate multipart/form-data

resttemplate multipart/form-data

前言:

日常我们使用http发送请求到其他服务器接口的时候,一般都是发送json格式的数据,或是json串、或是key-value值,格式是 application/json。但也可能遇到需要同时发送多个文件以及其他类型参数的混合数据,这时候,我们使用的http的contentType就是 multipart/form-data。针对这一需求,我们有多种方式实现:1借助spring自身的RestTemplate实现;2借助httpClient实现;

环境:

spring 4.3.0以上(4.3之前版本会出现中文乱码的情况)

org.springframework.http

实现:

发送端:

  1. public static void main(String[] args) {
  2. List<String> filePaths = new ArrayList<>();
  3. filePaths.add("E:\\test\\picture\\大.png");
  4. filePaths.add("E:\\test\\picture\\2.png");
  5. sendMultiFormData("http://localhost:8080/receive", filePaths, "测试多文件数据中文乱码");
  6. }
  7. public static void sendMultiFormData(String url, List<String> filePaths, String data) {
  8. HttpHeaders headers = new HttpHeaders();
  9. headers.setContentType(MediaType.MULTIPART_FORM_DATA);
  10. MultiValueMap<String, Object> form = new LinkedMultiValueMap<>();
  11. for (String filePath : filePaths) {
  12. FileSystemResource fileSystemResource = new FileSystemResource(filePath);
  13. if (!fileSystemResource.exists()) {
  14. continue;
  15. } else {
  16. form.add("file", fileSystemResource);
  17. }
  18. }
  19. form.add("data", data);
  20. RestTemplate restTemplate = new RestTemplate();
  21. HttpEntity<MultiValueMap<String, Object>> datas = new HttpEntity<>(form, headers);
  22. ResponseEntity<Object> responseEntity = restTemplate.postForEntity(url, datas, Object.class);
  23. String result = responseEntity.getBody().toString();
  24. System.out.println(result.toString());
  25. }

 

接收端:

  1. @PostMapping(value = "/receive")
  2. public Object testUploading(@RequestParam("file") MultipartFile[] files , String data) {
  3. String filepath = "E:\\test\\save\\";
  4. File targetFile = new File(filepath);
  5. if (!targetFile.exists()) {
  6. targetFile.mkdirs();
  7. }
  8. List<String> dp = new ArrayList<>() ;
  9. for(int i = 0 ; i < files.length ; i++){
  10. MultipartFile file = files[i] ;
  11. try {
  12. FileOutputStream out = new FileOutputStream(filepath + file.getOriginalFilename());
  13. out.write(file.getBytes());
  14. } catch (Exception e) {
  15. e.printStackTrace();
  16. }
  17. }
  18. return "SUCCESS";
  19. }

总结:

1、使用multipart/form-data方式发送混合数据;

2、spring4.3之前会出现中文乱码的问题,因为spring源码默认的就是iso的编码格式(具体可以自己看或者网上搜相关资料),解决的办法也有:升级spring或者把服务端的接收参数类型都改为string,然后通过设置utf-8编码格式(但是这些方式都不符合我的需求)

3、我实际的解决方式是文件和字符串数据分开成两个接口上传(spring无法升级),或者用其他方式实现比如httpClient等(下一篇文章介绍)。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/302878
推荐阅读
相关标签
  

闽ICP备14008679号