/**
*
* @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 选择你的浏览器程序
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)