JAVA读取文件流,设置浏览器下载或直接预览操作
最近项目需要在浏览器中通过url预览图片。但发现浏览器始终默认下载,而不是预览。研究了一下,发现了问题:
// 设置response的header,注意这句,如果开启,默认浏览器会进行下载操作,如果注释掉,浏览器会默认预览。 response.addheader("content-disposition", "attachment;filename=" + fileutil.getoriginalfilename(path));
然后需要注意:
response.setcontenttype(contenttype);//不同的文件类型,contenttype不一样,比如图片一般是image/jpeg、image/png等
@requestmapping(value = "getfile/{folder}/{filename:.+}*", method = requestmethod.get) public void getfile(httpservletresponse response, @pathvariable string folder, @pathvariable string filename) { // 设置编码 response.setcharacterencoding("utf-8"); try { string path = folder + "/" + filename; boolean flag = ossclient.doesobjectexist(ossproperties.getbucket(), path); // 判断文件是否存在 if (flag) { // 清空response response.reset(); // 设置response的header,注意这句,如果开启,默认浏览器会进行下载操作,如果注释掉,浏览器会默认预览。 // response.addheader("content-disposition", // "attachment;filename=" + fileutil.getoriginalfilename(path)); // response.addheader("content-length", "" + buf.length); outputstream toclient = new bufferedoutputstream(response.getoutputstream()); // bytearrayoutputstream bos = new bytearrayoutputstream(1024); ossobject ossobject = ossclient.getobject(ossproperties.getbucket(), path); string contenttype = ossobject.getobjectmetadata().getcontenttype(); system.out.println(contenttype); //注意contenttype类型 response.setcontenttype(contenttype); byte[] buf = new byte[1024]; inputstream in = ossobject.getobjectcontent(); int l; while ((l = in.read(buf)) != -1) { // if (buf.length != 0) // { toclient.write(buf, 0, l); // } } in.close(); // 写完以后关闭文件流 toclient.flush(); toclient.close(); // response.getoutputstream().write(bos.tobytearray()); } else { response.senderror(httpservletresponse.sc_not_found, "找不到相关资源"); } } catch (ioexception e) { e.printstacktrace(); } }
补充知识:【java文件下载】如何让浏览器直接下载后端返回的图片,而不是直接打开
默认情况下,浏览器设定是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(); } }
浏览器直接打开效果
下载效果
以上这篇java读取文件流,设置浏览器下载或直接预览操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。