springboot二进制流binary方式接收文件上传

// 路由注解可添加consumes参数指定Content-Type类型,如application/octet-stream
@PostMapping(value = "/test")
public void testBinary(HttpServletRequest request) throws IOException {
File targetFile = new File("d:/test333.png");
ServletInputStream inputStream = request.getInputStream();
// org.apache.commons.io.FileUtils
FileUtils.copyInputStreamToFile(inputStream, targetFile);
}
@PostMapping(value = "/test")
public String testText(@Req

springboot二进制流binary方式接收文件上传最先出现在Python成神之路

版权声明:
作者:congcong
链接:https://www.techfm.club/p/10375.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>