Struts2 文件下载

文件下载

 

1.       Servlet中的文件下载是通过流来实现的

 

2.       struts2中也可以通过流来实现下载。实现方式和Servlet实现方式相同,注意在action中执行方法里返回null
Action
代码

publicclass DownloadAction {

    public String execute() throws IOException{

        HttpServletRequest request=ServletActionContext.getRequest();

        HttpServletResponse response=ServletActionContext.getResponse();

        String path=request.getRealPath("/download");

        //这里把文件写死了

        File file=new File(path,"lesson2_JDBC.rar");

        response.setCharacterEncoding("utf-8");

        response.setContentLength((int)file.length());

        response.setHeader("Content-Disposition", "attachment;filename=lesson2_JDBC.rar");

       

        InputStream is=new FileInputStream(file);

        //通过response获得输出流

        OutputStream os=response.getOutputStream();

        byte[] buffer=newbyte[512];

        intlen=0;

        while((len=is.read(buffer))!=-1){

            os.write(buffer, 0, len);

        }

        os.close();

        is.close();

        returnnull;

    }

}

 

struts.xml

<!-- action返回结果为空时,不需要配置结果集 -->

<action name="download" class="com.zys.action.DownloadAction">

</action>

 

   JSP页面

<body>

   <a href="download.action">下载lesson2_JDBC.rar文件</a>

</body>

 

3.       使用struts2本身结果集来进行下载
StreamDownloadAction

publicclass StreamDownloadAction {

   

    private String fileName;

 

    public String execute(){

       return"success";

    }

   

    public InputStream getInputStream() throws FileNotFoundException{

       HttpServletRequest request=ServletActionContext.getRequest();

       String path=request.getRealPath("/download");

       File file=new File(path,fileName);

       FileInputStream fis=new FileInputStream(file);

       returnfis;

    }

 

    publicvoid setFileName(String fileName) {

       this.fileName = fileName;

    }

    //get方法可以获得通过URL传参的值

    public String getFileName() {

       returnfileName;

    }

}

 

JSP页面

<body>

    <a href="streamdown.action?fileName=lesson2_JDBC.rar">下载文件</a>

</body>

 

struts.xml

<action name="streamdown" class="com.zys.action.StreamDownloadAction">

    <result type="stream">

        <param name="contentDisposition">attachment;filename=${fileName}</param>

    </result>

</action>

注意:如果在result中配置inputName参数的值,那么action中要生成相应的get方法。

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小胖墩有点瘦

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值