真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何實(shí)現(xiàn)JeecgBoot單表數(shù)據(jù)導(dǎo)出多sheet

本篇內(nèi)容介紹了“如何實(shí)現(xiàn)JeecgBoot單表數(shù)據(jù)導(dǎo)出多sheet”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

目前創(chuàng)新互聯(lián)建站已為上1000家的企業(yè)提供了網(wǎng)站建設(shè)、域名、雅安服務(wù)器托管、網(wǎng)站托管、服務(wù)器租用、企業(yè)網(wǎng)站設(shè)計(jì)、萬載網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。

如何實(shí)現(xiàn)JeecgBoot單表數(shù)據(jù)導(dǎo)出多sheet

現(xiàn)在要導(dǎo)出格式如下:

如何實(shí)現(xiàn)JeecgBoot單表數(shù)據(jù)導(dǎo)出多sheet

實(shí)體如下:

public class TestEntity{      @Excel(name = "姓名", width = 15)     private String username;          @Excel(name = "年齡", width = 15)     private int age;  .....省略后續(xù)getset

數(shù)據(jù)格式如下:

//多個(gè)map,對應(yīng)了多個(gè)sheet List> listMap = new ArrayList>();  for(int i=0;i<3;i++){     Map map = new HashMap();     map.put("title",getExportParams("測試"+i));//表格title     map.put("entity",TestEntity.class);//表格對應(yīng)實(shí)體      //數(shù)據(jù)封裝方式一:map數(shù)據(jù),手動(dòng)封裝ExcelExportEntity集合     List ls=new ArrayList ();     for(int j=0;j<10;j++){         Map map = new HashMap();         map1.put("name","李四"+j);         map1.put("age",18+j);         ls.add(map);     }     //數(shù)據(jù)封裝方式二:實(shí)體類     List ls=new ArrayList ();     for(int j=0;j<10;j++){         TestEntity testEntity = new TestEntity();         testEntity.setName("張三"+j);         testEntity.setAge(18+j);         ls.add(testEntity);     }     map.put("data", ls);     listMap.add(map); }  //導(dǎo)出參數(shù) public static ExportParams getExportParams(String name) {      //表格名稱,sheet名稱,導(dǎo)出版本      return  new ExportParams(name,name,ExcelType.XSSF); }

調(diào)用ExcelExportUtil.exportExcel方法生成workbook

Workbook wb = ExcelExportUtil.exportExcel(listMap,ExcelType.XSSF);

“如何實(shí)現(xiàn)JeecgBoot單表數(shù)據(jù)導(dǎo)出多sheet”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!


名稱欄目:如何實(shí)現(xiàn)JeecgBoot單表數(shù)據(jù)導(dǎo)出多sheet
本文地址:http://weahome.cn/article/jcjdjs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部