当前位置:   article > 正文

java后台模拟multipart/form-data请求 上传文件和普通文本的两种方法_java resttemplate multipart/form-data 带不过去参数

java resttemplate multipart/form-data 带不过去参数

本地文件

import org.springframework.util.LinkedMultiValueMap;
import org.springframework.util.MultiValueMap;
import org.springframework.web.client.RestTemplate;
import org.springframework.http.HttpHeaders;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.core.io.FileSystemResource;
import java.io.File;

	RestTemplate restTemplate = new RestTemplate();
	String apiUrl = "http://192.91.4.213:9092/data_dump/v1/lead";
    HttpHeaders headers = new HttpHeaders();
    MultiValueMap<String, Object> map= new LinkedMultiValueMap<>()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/302907
推荐阅读
相关标签
  

闽ICP备14008679号