admin 管理员组

文章数量: 887017

默认情况下,浏览器设定是inline形式,对于服务器返回的文件,能打开就打开,不能打开就自动下载。

Content-Disposition 设置

大多数情况下,后端都是实现一个文件管理的功能,通过文件的唯一标志去获取文件流。后端都会读取文件,然后文件的流写入到response的输出流,这样就可以实现文件的访问了。

但是有些时候,实现下载功能,后端返回的是图片,浏览器却直接把图片打开了?怎么回事?

这就是Content-Disposition设置的问题,如下都是java示例:

设置为inline,如果浏览器支持该文件类型的预览,就会打开,而不是下载:

response.setHeader("Content-Disposition", "inline; filename=111.jpg");
设置为attachment,浏览器则直接进行下载,纵使他能够预览该类型的文件。

response.setHeader("Content-Disposition", "attachment; filename=111.jpg");
特别说明:Chrome不设置Content-Type也会自动打开,如果是它可识别预览的文件。

示例代码
package cn.hanquan.controller;

import java.io.File;
import java.io.IOException;

import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.commons.io.FileUtils;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;

@Controller
public class DemoDownload {
	@RequestMapping("download")
	public void download(String filename, HttpServletResponse res, HttpServletRequest req) throws IOException {
		// 设置响应流中文件进行下载
		// attachment是以附件的形式下载,inline是浏览器打开
		// bbb.txt是下载时显示的文件名
//		res.setHeader("Content-Disposition", "attachment;filename=bbb.txt"); // 下载
		res.setHeader("Content-Disposition", "inline;filename=bbb.txt"); // 浏览器打开
		// 把二进制流放入到响应体中
		ServletOutputStream os = res.getOutputStream();
		System.out.println("here download");
		String path = req.getServletContext().getRealPath("files");
		System.out.println("path is: " + path);
		System.out.println("fileName is: " + filename);
		File file = new File(path, filename);
		byte[] bytes = FileUtils.readFileToByteArray(file);
		os.write(bytes);
		os.flush();
		os.close();
	}
}
浏览器直接打开效果

下载效果

本文标签: 而不是 后端 浏览器 文件 图片