【springboot+easypoi】一行代碼搞定excel導(dǎo)入導(dǎo)出

我們不造輪子张惹,只是輪子的搬運(yùn)工息裸。(其實(shí)最好是造輪子蝇更,造比別人好的輪子)

開發(fā)中經(jīng)常會遇到excel的處理沪编,導(dǎo)入導(dǎo)出解析等等,java中比較流行的用poi簿寂,但是每次都要寫大段工具類來搞定這事兒漾抬,此處推薦一個別人造好的輪子【easypoi】,下面介紹下“輪子”的使用常遂。

pom引入

不再需要其他jar

       <dependency>
            <groupId>cn.afterturn</groupId>
            <artifactId>easypoi-base</artifactId>
            <version>3.0.3</version>
        </dependency>
        <dependency>
            <groupId>cn.afterturn</groupId>
            <artifactId>easypoi-web</artifactId>
            <version>3.0.3</version>
        </dependency>
        <dependency>
            <groupId>cn.afterturn</groupId>
            <artifactId>easypoi-annotation</artifactId>
            <version>3.0.3</version>
        </dependency>

編寫實(shí)體類

此處注意必須要有空構(gòu)造函數(shù)纳令,否則會報錯“對象創(chuàng)建錯誤”
關(guān)于注解@Excel,其他還有@ExcelCollection克胳,@ExcelEntity 平绩,@ExcelIgnore,@ExcelTarget等漠另,此處我們用不到捏雌,可以去官方查看更多

屬性 類型 類型 說明
name String null 列名
needMerge boolean fasle 縱向合并單元格
orderNum String "0" 列的排序,支持name_id
replace String[] {} 值得替換 導(dǎo)出是{a_id,b_id} 導(dǎo)入反過來
savePath String "upload" 導(dǎo)入文件保存路徑
type int 1 導(dǎo)出類型 1 是文本 2 是圖片,3 是函數(shù),10 是數(shù)字 默認(rèn)是文本
width double 10 列寬
height double 10 列高,后期打算統(tǒng)一使用@ExcelTarget的height,這個會被廢棄,注意
isStatistics boolean fasle 自動統(tǒng)計數(shù)據(jù),在追加一行統(tǒng)計,把所有數(shù)據(jù)都和輸出這個處理會吞沒異常,請注意這一點(diǎn)
isHyperlink boolean false 超鏈接,如果是需要實(shí)現(xiàn)接口返回對象
isImportField boolean true 校驗(yàn)字段,看看這個字段是不是導(dǎo)入的Excel中有,如果沒有說明是錯誤的Excel,讀取失敗,支持name_id
exportFormat String "" 導(dǎo)出的時間格式,以這個是否為空來判斷是否需要格式化日期
importFormat String "" 導(dǎo)入的時間格式,以這個是否為空來判斷是否需要格式化日期
format String "" 時間格式,相當(dāng)于同時設(shè)置了exportFormat 和 importFormat
databaseFormat String "yyyyMMddHHmmss" 導(dǎo)出時間設(shè)置,如果字段是Date類型則不需要設(shè)置 數(shù)據(jù)庫如果是string 類型,這個需要設(shè)置這個數(shù)據(jù)庫格式,用以轉(zhuǎn)換時間格式輸出
numFormat String "" 數(shù)字格式化,參數(shù)是Pattern,使用的對象是DecimalFormat
imageType int 1 導(dǎo)出類型 1 從file讀取 2 是從數(shù)據(jù)庫中讀取 默認(rèn)是文件 同樣導(dǎo)入也是一樣的
suffix String "" 文字后綴,如% 90 變成90%
isWrap boolean true 是否換行 即支持\n
mergeRely int[] {} 合并單元格依賴關(guān)系,比如第二列合并是基于第一列 則{1}就可以了
mergeVertical boolean fasle 縱向合并內(nèi)容相同的單元格
import cn.afterturn.easypoi.excel.annotation.Excel;

import java.util.Date;

public class Person {

    @Excel(name = "姓名", orderNum = "0")
    private String name;

    @Excel(name = "性別", replace = {"男_1", "女_2"}, orderNum = "1")
    private String sex;

    @Excel(name = "生日", exportFormat = "yyyy-MM-dd", orderNum = "2")
    private Date birthday;

    public Person(String name, String sex, Date birthday) {
        this.name = name;
        this.sex = sex;
        this.birthday = birthday;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getSex() {
        return sex;
    }

    public void setSex(String sex) {
        this.sex = sex;
    }

    public Date getBirthday() {
        return birthday;
    }

    public void setBirthday(Date birthday) {
        this.birthday = birthday;
    }
}

導(dǎo)入導(dǎo)出公用方法

public static void exportExcel(List<?> list, String title, String sheetName, Class<?> pojoClass,String fileName,boolean isCreateHeader, HttpServletResponse response){
        ExportParams exportParams = new ExportParams(title, sheetName);
        exportParams.setCreateHeadRows(isCreateHeader);
        defaultExport(list, pojoClass, fileName, response, exportParams);

    }
    public static void exportExcel(List<?> list, String title, String sheetName, Class<?> pojoClass,String fileName, HttpServletResponse response){
        defaultExport(list, pojoClass, fileName, response, new ExportParams(title, sheetName));
    }
public static void exportExcel(List<Map<String, Object>> list, String fileName, HttpServletResponse response){
        defaultExport(list, fileName, response);
    }

    private static void defaultExport(List<?> list, Class<?> pojoClass, String fileName, HttpServletResponse response, ExportParams exportParams) {
        Workbook workbook = ExcelExportUtil.exportExcel(exportParams,pojoClass,list);
        if (workbook != null);
        downLoadExcel(fileName, response, workbook);
    }

    private static void downLoadExcel(String fileName, HttpServletResponse response, Workbook workbook) {
        try {
            response.setCharacterEncoding("UTF-8");
            response.setHeader("content-Type", "application/vnd.ms-excel");
            response.setHeader("Content-Disposition",
                    "attachment;filename=" + URLEncoder.encode(fileName, "UTF-8"));
            workbook.write(response.getOutputStream());
        } catch (IOException e) {
            throw new NormalException(e.getMessage());
        }
    }
private static void defaultExport(List<Map<String, Object>> list, String fileName, HttpServletResponse response) {
        Workbook workbook = ExcelExportUtil.exportExcel(list, ExcelType.HSSF);
        if (workbook != null);
        downLoadExcel(fileName, response, workbook);
    }

    public static <T> List<T> importExcel(String filePath,Integer titleRows,Integer headerRows, Class<T> pojoClass){
        if (StringUtils.isBlank(filePath)){
            return null;
        }
        ImportParams params = new ImportParams();
        params.setTitleRows(titleRows);
        params.setHeadRows(headerRows);
        List<T> list = null;
        try {
            list = ExcelImportUtil.importExcel(new File(filePath), pojoClass, params);
        }catch (NoSuchElementException e){
            throw new NormalException("模板不能為空");
        } catch (Exception e) {
            e.printStackTrace();
            throw new NormalException(e.getMessage());
        }
        return list;
    }
    public static <T> List<T> importExcel(MultipartFile file, Integer titleRows, Integer headerRows, Class<T> pojoClass){
        if (file == null){
            return null;
        }
        ImportParams params = new ImportParams();
        params.setTitleRows(titleRows);
        params.setHeadRows(headerRows);
        List<T> list = null;
        try {
            list = ExcelImportUtil.importExcel(file.getInputStream(), pojoClass, params);
        }catch (NoSuchElementException e){
            throw new NormalException("excel文件不能為空");
        } catch (Exception e) {
            throw new NormalException(e.getMessage());
        }
        return list;
    }

對的,沒看錯笆搓,這就可以導(dǎo)出導(dǎo)入了,看起來代碼挺多性湿,其實(shí)是提供了多個導(dǎo)入導(dǎo)出方法而已

測試

  @RequestMapping("export")
    public void export(HttpServletResponse response){

        //模擬從數(shù)據(jù)庫獲取需要導(dǎo)出的數(shù)據(jù)
        List<Person> personList = new ArrayList<>();
        Person person1 = new Person("路飛","1",new Date());
        Person person2 = new Person("娜美","2", DateUtils.addDate(new Date(),3));
        Person person3 = new Person("索隆","1", DateUtils.addDate(new Date(),10));
        Person person4 = new Person("小貍貓","1", DateUtils.addDate(new Date(),-10));
        personList.add(person1);
        personList.add(person2);
        personList.add(person3);
        personList.add(person4);

        //導(dǎo)出操作
        FileUtil.exportExcel(personList,"花名冊","草帽一伙",Person.class,"海賊王.xls",response);
    }

    @RequestMapping("importExcel")
    public void importExcel(){
        String filePath = "F:\\海賊王.xls";
        //解析excel,
        List<Person> personList = FileUtil.importExcel(filePath,1,1,Person.class);
        //也可以使用MultipartFile,使用 FileUtil.importExcel(MultipartFile file, Integer titleRows, Integer headerRows, Class<T> pojoClass)導(dǎo)入
        System.out.println("導(dǎo)入數(shù)據(jù)一共【"+personList.size()+"】行");

        //TODO 保存數(shù)據(jù)庫
    }

導(dǎo)出結(jié)果

導(dǎo)出結(jié)果

測試導(dǎo)入

導(dǎo)出結(jié)果再添加一行满败,執(zhí)行肤频,輸出導(dǎo)入數(shù)據(jù)行數(shù)


導(dǎo)入結(jié)果
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市算墨,隨后出現(xiàn)的幾起案子宵荒,更是在濱河造成了極大的恐慌,老刑警劉巖净嘀,帶你破解...
    沈念sama閱讀 216,324評論 6 498
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件报咳,死亡現(xiàn)場離奇詭異,居然都是意外死亡挖藏,警方通過查閱死者的電腦和手機(jī)暑刃,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,356評論 3 392
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來熬苍,“玉大人稍走,你說我怎么就攤上這事〔竦祝” “怎么了?”我有些...
    開封第一講書人閱讀 162,328評論 0 353
  • 文/不壞的土叔 我叫張陵粱胜,是天一觀的道長柄驻。 經(jīng)常有香客問我,道長焙压,這世上最難降的妖魔是什么鸿脓? 我笑而不...
    開封第一講書人閱讀 58,147評論 1 292
  • 正文 為了忘掉前任抑钟,我火速辦了婚禮,結(jié)果婚禮上野哭,老公的妹妹穿的比我還像新娘在塔。我一直安慰自己,他們只是感情好拨黔,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,160評論 6 388
  • 文/花漫 我一把揭開白布蛔溃。 她就那樣靜靜地躺著,像睡著了一般篱蝇。 火紅的嫁衣襯著肌膚如雪贺待。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 51,115評論 1 296
  • 那天零截,我揣著相機(jī)與錄音麸塞,去河邊找鬼。 笑死涧衙,一個胖子當(dāng)著我的面吹牛哪工,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播弧哎,決...
    沈念sama閱讀 40,025評論 3 417
  • 文/蒼蘭香墨 我猛地睜開眼雁比,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了傻铣?” 一聲冷哼從身側(cè)響起章贞,我...
    開封第一講書人閱讀 38,867評論 0 274
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎非洲,沒想到半個月后鸭限,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 45,307評論 1 310
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡两踏,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,528評論 2 332
  • 正文 我和宋清朗相戀三年败京,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片梦染。...
    茶點(diǎn)故事閱讀 39,688評論 1 348
  • 序言:一個原本活蹦亂跳的男人離奇死亡赡麦,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出帕识,到底是詐尸還是另有隱情泛粹,我是刑警寧澤,帶...
    沈念sama閱讀 35,409評論 5 343
  • 正文 年R本政府宣布肮疗,位于F島的核電站晶姊,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏伪货。R本人自食惡果不足惜们衙,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,001評論 3 325
  • 文/蒙蒙 一钾怔、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧蒙挑,春花似錦宗侦、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,657評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至蜓谋,卻和暖如春桃焕,著一層夾襖步出監(jiān)牢的瞬間观堂,已是汗流浹背溃睹。 一陣腳步聲響...
    開封第一講書人閱讀 32,811評論 1 268
  • 我被黑心中介騙來泰國打工笔横, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留吹缔,地道東北人厢塘。 一個月前我還...
    沈念sama閱讀 47,685評論 2 368
  • 正文 我出身青樓,卻偏偏與公主長得像琅关,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子新症,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,573評論 2 353

推薦閱讀更多精彩內(nèi)容