要批量上传一些数据,已经写好了文件上传的接口,现在需要把数据通过http的post 请求发送到服务上面
注意 file 和 接收端的 file 名字一样
curl -H "Expect:" -F 'file=@test_2020-03-03.txt' http://192.168.100.xx:xxxx/api
接收端:
@PostMapping("/api")
public @ResponseBody Map<String,Object> method(@RequestParam("file") MultipartFile file, HttpServletRequest request) throws UnsupportedEncodingException {
//存放返回结果
Map<String,Object> result = new HashMap<String,Object>();
return result;
}
搞定!!!