如何导出java工程项目里面的excel文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何导出java工程项目里面的excel文件相关的知识,希望对你有一定的参考价值。

web项目,比如在java工程下有一个table的文件夹里面有demo1.xls文件,我想要通过在web页面上点击下载按钮,实现下载demo1.xls文件到计算机本地
求大神帮忙

request.setCharacterEncoding("utf-8");
String title = request.getParameter("title");
//title = URLDecoder.decode(title,"utf-8");
int maid = Integer.parseInt(request.getParameter("maid"));
response.setContentType("application/vnd.ms-excel");
response.setHeader("Content-Disposition" ,"attachment;filename="+new String((title+".xls").getBytes(),"ISO-8859-1"));
//ManuscriptAction down=new ManuscriptAction();

WebApplicationContext webAppContext = WebApplicationContextUtils.getRequiredWebApplicationContext(getServletContext());//得到WebApplicationContext 。
ManuscriptDaoImp cocAutoService = (ManuscriptDaoImp) webAppContext.getBean("manuscriptDaoImp");
cocAutoService.exportMan(maid,title,response.getOutputStream());

out.clear();
out = pageContext.pushBody();

我的下载代码 提供你参考
参考技术A request.setCharacterEncoding("utf-8");
   String title = request.getParameter("title");
//title = URLDecoder.decode(title,"utf-8");
int maid = Integer.parseInt(request.getParameter("maid"));
   response.setContentType("application/vnd.ms-excel");
   response.setHeader("Content-Disposition" ,"attachment;filename="+new String((title+".xls").getBytes(),"ISO-8859-1"));
//ManuscriptAction down=new ManuscriptAction();

WebApplicationContext webAppContext = WebApplicationContextUtils.getRequiredWebApplicationContext(getServletContext());//得到WebApplicationContext 。
ManuscriptDaoImp cocAutoService = (ManuscriptDaoImp) webAppContext.getBean("manuscriptDaoImp");
        cocAutoService.exportMan(maid,title,response.getOutputStream());

        out.clear();
            out = pageContext.pushBody();

参考技术B poi 或者jxl 进行读写,直接用io流输出即可.

以上是关于如何导出java工程项目里面的excel文件的主要内容,如果未能解决你的问题,请参考以下文章

java使用freemarker作为模板导出Excel表格

JavaEE——Java导出Excel表

java 导出excel 关于导出路径的配置 求解答 求配置文件的例子

如何在java里面操作excel文件里面的对象

如何打开用eclipse没有.project文件的Java工程

如何把JSP页面导出到Excel中