使用easyexcel导出并下载excel文件

easyexcel可以用于大数据量的excel导入导出,并且不占多少内存

1.导入easyexcel的依赖,最新版本可以查找maven仓库

<!--JAVA解析Excel工具easyexcel-->

    <groupId>com.alibaba

    <artifactId>easyexcel

    <version>1.1.2-beta5

</dependency>


2.逻辑层代码:

@Controller

@RequestMapping("/InvoiceExportAction.do")

public class InvoiceExportActionextends BaseController {

static Loggerlog=Logger.getLogger(InvoiceExportAction.class);

  @Autowired

  private InvoiceExportServiceinvoiceExportService;

  /**

    * 发票导出

    * @param request

    * @param response

    * @return

    * @throws IOException

*/

  @RequestMapping(params ="method=exportGrid")

public StringexportGrid(HttpServletRequest request,HttpServletResponse response) {

String result=null;

      ServletOutputStream out =null;

      ExcelWriter writer =null;

      try{

String numPerPage = request.getParameter("numPerPage");//查询分页,每页几条

        String pageNum = request.getParameter("pageNum");//查询分页为第几页

        String invoiceType=request.getParameter("invoiceType");//发票类型

        String invoiceSource=request.getParameter("invoiceSource");//发票来源

        String invoiceStatus=request.getParameter("invoiceStatus");//发票匹配状态

        String invstate=request.getParameter("invstate");//发票状态

        String invoicenote = request.getParameter("invoicenote");//对账单号

        String ticketno = request.getParameter("ticketno");//开票单号

        String uptime_min = request.getParameter("uptime_min");//上传最小日期

        String uptime_max = request.getParameter("uptime_max");//上传最大日期

        String invoicetime_min = request.getParameter("invoicetime_min");//发票最小日期

        String invoicetime_max = request.getParameter("invoicetime_max");//发票最大日期

        String invoiceCode = request.getParameter("invoiceCode");//发票代码

        String invoiceno = request.getParameter("invoiceno");//发票代码

        String venderCode = request.getParameter("venderCode");//供应商编号

        String scanman = request.getParameter("scanman");//扫描人

        String vender_cancel = request.getParameter("vender_cancel");//供应商作废

        String[] companyArray = request.getParameterValues("company_fpcx");//公司代码

        String taxFree = request.getParameter("taxFree");//是否免税

        String ratifydate=request.getParameter("ratifydate");//过账日期

        String selectInvoiceType=request.getParameter("selectInvoiceType");//发票类型前台传值

        if(StringUtils.isEmpty(uptime_min)

|| StringUtils.isEmpty(uptime_max)){

String msg ="上传日期不能为空,请重新登录后再试";

            response.setCharacterEncoding("utf-8");

            response.setHeader("Content-Type", "text/html;charset=UTF-8");

            response.getOutputStream().write(msg.getBytes());

            response.getOutputStream().flush();

return null;

        }

List invoiceSheetInfoList =invoiceExportService.queryInvoiceList(invoiceType,invoiceSource,invoiceStatus,invoicenote,ticketno,uptime_min,

              uptime_max,invoicetime_min,invoicetime_max,numPerPage,pageNum,invoiceCode,venderCode,companyArray,invoiceno,

              scanman,vender_cancel,"1","",taxFree,invstate,ratifydate,selectInvoiceType);

        //使用easyexcel进行导出

        out = response.getOutputStream();

        writer =new ExcelWriter(out, ExcelTypeEnum.XLSX);

        String fileName ="我的发票查询信息";

        Sheet sheet1 =new Sheet(1, 0,InvoiceSheetInfo.class);

        sheet1.setSheetName("发票信息");

        writer.write(invoiceSheetInfoList, sheet1);

        response.setCharacterEncoding("utf-8");

        response.setContentType("application/vnd.ms-excel;charset=utf-8");

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

              +new String((fileName +".xlsx").getBytes(), "ISO8859-1"));

        out.flush();

return null;

      }catch(Exception e){

log.error(e.getMessage());

        e.printStackTrace();

        result="404";

      }finally {

if(Objects.nonNull(writer)){

writer.finish();

        }

try {

if(Objects.nonNull(out)){

out.close();

            }

}catch (IOException e) {

e.printStackTrace();

        }

return result;

      }

}

}

3.domain类

@Data

public class InvoiceSheetInfoextends BaseRowModel {

@ExcelProperty(value ="公司代码" ,index =0)

private Stringcompanycode;

    @ExcelProperty(value ="公司名称" ,index =1)

private Stringcompanyname;

    @ExcelProperty(value ="公司税号" ,index =2)

private Stringcompanytaxpaying;

    @ExcelProperty(value ="供应商编码" ,index =3)

private Stringvendercode;

    @ExcelProperty(value ="供应商名称" ,index =4)

private Stringvendername;

    @ExcelProperty(value ="供应商税号" ,index =5)

private Stringvendertaxpaying;

    @ExcelProperty(value ="开票单号" ,index =6)

private Stringinvnoteno;

    @ExcelProperty(value ="发票号码" ,index =7)

private Stringinvoiceno;

    @ExcelProperty(value ="发票代码" ,index =8)

private Stringinvoicecode;

    @ExcelProperty(value ="发票日期" ,index =9)

private Stringinvoicedate;

    @ExcelProperty(value ="未税金额" ,index =10)

private Stringtaxableamt;

    @ExcelProperty(value ="税率" ,index =11)

private Stringtaxrate;

    @ExcelProperty(value ="税额" ,index =12)

private Stringtaxamt;

    @ExcelProperty(value ="含税金额" ,index =13)

private Stringpayment;

    @ExcelProperty(value ="对账单号" ,index =14)

private Stringsheetid;

    @ExcelProperty(value ="供应商作废" ,index =15)

private Stringvender_cancle;

    @ExcelProperty(value ="发票来源" ,index =16)

private Stringinvoicesource;

    @ExcelProperty(value ="发票匹配状态" ,index =17)

private Stringinvoicecodestatus;

    @ExcelProperty(value ="发票状态" ,index =18)

private Stringinvstate;

    @ExcelProperty(value ="失败原因" ,index =19)

private Stringfailreason;

    @ExcelProperty(value ="过账日期" ,index =20)

private Stringratifydate;

    @ExcelProperty(value ="上传日期" ,index =21)

private Stringuploaddate;

    @ExcelProperty(value ="认证日期" ,index =22)

private Stringauthtime;

    @ExcelProperty(value ="备注" ,index =23)

private Stringremarks;

    @ExcelProperty(value ="扫描人" ,index =24)

private Stringscanman;

    @ExcelProperty(value ="是否免税" ,index =25)

private Stringtaxfree;

}

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,386评论 6 479
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,939评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,851评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,953评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,971评论 5 369
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,784评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,126评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,765评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,148评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,744评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,858评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,479评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,080评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,053评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,278评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,245评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,590评论 2 343

推荐阅读更多精彩内容