想吃苹果的蚂蚁的gravatar头像
想吃苹果的蚂蚁 2017-07-07 10:39:06

spring mvc实现下载一个excel文件的java web程序

1.设置文件名

String fileName="batch_fund_template.xls";

2设置ContentType

response.setContentType("application/vnd.ms-excel");

3.设置文件路径

String nowPath=request.getSession().getServletContext().getRealPath("/")+"/"+"WEB-INF"+"/"+"template"+"/"+fileName;

4.新建文件对象

File file=new File(nowPath);

5.清空response

response.reset();

6.设置response的header

            response.addHeader("Content-Disposition", "attachment;filename="+new String(fileName.getBytes("gbk"),"iso-8859-1"));
            response.addHeader("Content-Length", ""+file.length());
7.以流的方式下载文件

            InputStream fis=new BufferedInputStream(new FileInputStream(nowPath));
            byte[] buffer=new byte[fis.available()];
            fis.read(buffer);
            fis.close();
            
            toClient=new BufferedOutputStream(response.getOutputStream());
            toClient.write(buffer);
            toClient.flush();
            toClient.close();

 

项目截图

spring mvc实现下载一个excel文件的java web程序

运行截图

spring mvc实现下载一个excel文件的java web程序


打赏

文件名:export.zip,文件大小:55.016K 下载
  • /
      • /export
        • /export/.classpath
        • /export/.project
          • /export/.settings
            • /export/.settings/.jsdtscope
            • /export/.settings/org.eclipse.core.resources.prefs
            • /export/.settings/org.eclipse.jdt.core.prefs
            • /export/.settings/org.eclipse.m2e.core.prefs
            • /export/.settings/org.eclipse.wst.common.component
            • /export/.settings/org.eclipse.wst.common.project.facet.core.xml
          • /export/target
              • /export/target/tomcat
                  • /export/target/tomcat/work
                      • /export/target/tomcat/work/Tomcat
                          • /export/target/tomcat/work/Tomcat/localhost
                              • /export/target/tomcat/work/Tomcat/localhost/export
最代码最近下载分享源代码列表最近下载
hjd3983  LV10 2021年4月3日
业务管理  LV7 2021年1月28日
郭亚钢  LV8 2020年8月13日
wjh12345654321  LV14 2020年7月17日
小江2018  LV9 2020年6月12日
wangshihua  LV19 2020年4月3日
gongjunjienb  LV15 2019年11月30日
yuandaima1234  LV4 2019年11月28日
广西吴彦祖  LV6 2019年11月1日
zywzywzyw1  LV17 2019年10月29日
最代码最近浏览分享源代码列表最近浏览
cz8857216  LV4 1月5日
uni-code_0123  LV1 2023年11月29日
lyj001 2023年10月24日
暂无贡献等级
微信网友_6145740972576768  LV2 2022年12月21日
PaymentCodeSystem  LV11 2022年9月22日
我不划水 2022年5月13日
暂无贡献等级
bai620123  LV16 2022年4月16日
gqb0123  LV1 2022年4月8日
xiex909  LV27 2022年3月31日
有时候简简单单就好了  LV4 2022年3月29日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友