首页 > 代码库 > java 文件下载

java 文件下载

文件下载

  设置一个超链接,不就可以下载可以了吗?确实如此,但是通过超链接下载文件,暴露了下载文件的真实地址,不利于对资源进行安全保护;而且,利用超链接下载文件,服务端的文件只能存放在Web应用程序所在的目录下。

  利用程序编码实现下载,可以增加安全访问控制,对经过授权认证的用户提供下载;还可以从任意位置提供下载的数据,我们可以放到Web应用程序以外的目录中,也可以将文件保存到数据库中。

  利用程序实现下载也非常简单,只需要按照如下的方式设置三个报头域就可以了:

Content-Type:application/x-msdownloadContent-Disposition:attachment;filename=downloadfileContent-Length:filesize

  1、利用程序实现下载:

public class DownAction extends ActionSupport implements ServletResponseAware{    @Override    public String execute() throws Exception {        String path = "E:\\books\\[Struts.2深入详解].孙鑫.扫描版.pdf";        download(path,response);        return null;    }    public void download(String path,HttpServletResponse response){        try {            // 根据path获取指定文件            File file = new File(path);            // 取得文件名称            String  filename = file.getName();            // 设置response的Header            response.setContentType("application/x-msdownload;charset=UTF-8");            //设置要显示在保存窗口的文件名,如果文件名中有中文的话,则要设置字符集,否则会出现乱码。            response.addHeader("Content-Disposition","attachment; filename="+new String(filename.getBytes("gbk"),"iso-8859-1"));            response.addHeader("Content-Length",""+file.length());            // 以流的方式下载文件            InputStream fis = new FileInputStream(file);            OutputStream client = response.getOutputStream();            int length;            byte[] buffer = new byte[1024];            while((length = fis.read(buffer)) > 0){                // 将数据写到客户端内存                client.write(buffer,0,length);            }            client.flush();            client.close();            fis.close();        } catch (FileNotFoundException e) {            e.printStackTrace();        } catch (IOException e) {            e.printStackTrace();        }    }    @Override    public void setServletResponse(HttpServletResponse response) {        this.response = response;    }    private HttpServletResponse response;}

2、利用Struts2下载文件

public class StrutsDownAction extends ActionSupport implements ServletResponseAware{    private String fileName;    private InputStream is;    public InputStream getInputStream(){        return is;    }    public String getFileName() {        try {
       // 解决中文乱码 response.setHeader(
"charset","ISO8859-1"); return new String(this.fileName.getBytes(),"ISO8859-1"); } catch (UnsupportedEncodingException e) { e.printStackTrace(); return "获取文件名出现了错误!"; } } @Override public String execute() throws Exception { File file = new File("E:\\books\\[Struts.2深入详解].孙鑫.扫描版.pdf"); fileName = file.getName(); is = new FileInputStream(file); return SUCCESS; } @Override public void setServletResponse(HttpServletResponse response) { this.response = response; } private HttpServletResponse response;}

struts.xml配置文件

<action name="sdownload" class="org.zsm.action.StrutsDownAction">            <result name="success" type="stream">                <param name="contentType">application/x-msdownload;charset=ISO8859-1</param>                <param name="inputStream">inputStream</param>                <param name="contentDisposition">filename=${fileName}</param>                <param name="bufferSize">2048</param>            </result>        </action>

 

java 文件下载