Postman保存接口返回的文件流

1:在发送接口时

send 下拉有个Send and download 即可

2:如何上传文件

选择body

form-data

key

输入参数 选择 Text 或者file 即可

接受端

@PostMapping("/import")

(@RequestParam(value="file") MultipartFile file)

你可能感兴趣的:(测试工具,postman)