调用浏览器下载
Posted 追梦_坚持
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了调用浏览器下载相关的知识,希望对你有一定的参考价值。
//设置Content-Disposition
response.setHeader("Content-Disposition", "attachment;filename="+docName);
//读取文件
InputStream in = new FileInputStream(fullFileName);
OutputStream outs = response.getOutputStream();
//写文件
int b;
while((b=in.read())!= -1)
{
outs.write(b);
}
in.close();
outs.close();
以上是关于调用浏览器下载的主要内容,如果未能解决你的问题,请参考以下文章