java相应头设置文件在线打开

java相应头设置文件在线打开,第1张

1. 后台代码

/**

* 在线浏览文件

*

* @param response 文件流

* @throws Exception流异常

*/

@ApiModelProperty(value = "在线浏览文件")

@GetMapping("downFile")

public void downFile(HttpServletResponse response) throws Exception {

String filePath = "D:\\file\\1.jpg"

response.setContentType(Files.probeContentType(Paths.get(fileInfo.getFilePath(filePath))))

File file = new File(filePath)

byte[] bytes = Files.toByteArray(file)

out.write(bytes)

out.close()

}

2.前台代码

下载文件

3.整理

response在头部设置 "Content-Type"。

response.setHeader("Content-Type","video/mpeg4")

如果你是指单个文件的打开,那么,右键open with other ->external programs 选择你的浏览器程序

如果你指的是tomcat启动完毕后,自动d出的网页,那么菜单栏Windows ->general ->web browser ->use external web browser 选择你的浏览器程序


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/8105964.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-13
下一篇 2023-04-13

发表评论

登录后才能评论

评论列表(0条)

保存