首页
IT
登录
6mi
u
盘
搜
搜 索
IT
springmvc返回文件的正确写法(下载文件)
springmvc返回文件的正确写法(下载文件)
xiaoxiao
2021-03-25
104
@RequestMapping
(
"/test"
)
public
ResponseEntity
<
byte
[]>
test
(
HttpServletRequest
request
)
throws
Exception
{
HttpHeaders
headers
=
new
HttpHeaders
()
;
headers
.
setContentDispositionFormData
(
"attachment"
,
"publicKey"
)
;
headers
.
setContentType
(
MediaType
.
APPLICATION_OCTET_STREAM
)
;
return new
ResponseEntity<>(
"test"
.getBytes()
,
headers
,
HttpStatus.CREATED)
;
}
转载请注明原文地址: https://ju.6miu.com/read-24619.html
技术
最新回复
(
0
)