解析xlsx文件,存入數(shù)據(jù)庫

主要是用到了POI包逻淌,循環(huán)遍歷疟暖。重點是要判斷cell.getCellType()也就是cell的類型,因為cell表格數(shù)據(jù)可能是數(shù)字骨望,字符串欣舵,日期等。我是根據(jù)表的數(shù)據(jù)只判斷了字符串和數(shù)字劣光,有時候可能會有布爾類型准验,日期等。

// 解析xlsx
    public List<Repeater> readText(String path) {
        List<Repeater> reList = new ArrayList<Repeater>();
        Repeater re = null;
        try {
            File file = new File(path);
            if (file.isFile() && file.exists()) { // 判斷文件是否存在
                InputStream is = new FileInputStream(path);
                Workbook wb = null;
                wb = new XSSFWorkbook(is);// 2007以上版本
                // 得到第一個shell
                Sheet sheetAt = wb.getSheetAt(0);
                // 得到Excel的行數(shù)
                int rows = sheetAt.getPhysicalNumberOfRows();
                int cells = 0;
                // 得到Excel的列數(shù)(前提是有行數(shù))
                if (rows > 1 && sheetAt.getRow(0) != null) {
                    cells = sheetAt.getRow(0).getPhysicalNumberOfCells();
                }
                // 循環(huán)Excel行數(shù)
                for (int r = 1; r < rows; r++) {
                    Row row = sheetAt.getRow(r);
                    if (row == null) {
                        continue;
                    }
                    re = new Repeater();
                    // 循環(huán)Excel的列
                    for (int c = 0; c < cells; c++) {
                        Cell cell = row.getCell(c);
                        if (null != cell) {
                            re.setCreateDate(null);
                            re.setModifyDate(new Date());
                            if (c == 0) {
                                if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) {
                                    String id = String.valueOf(cell
                                            .getNumericCellValue());
                                    re.setRepeaterId(id);
                                } else {
                                    re.setRepeaterId(cell.getStringCellValue());
                                }
                            } else if (c == 1) {
                                if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) {
                                    String rptname = String.valueOf(cell
                                            .getNumericCellValue());
                                    re.setRptname(rptname);
                                } else {
                                    re.setRptname(cell.getStringCellValue());
                                }
                            } else if (c == 2) {
                                if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) {
                                    String number = String.valueOf(cell
                                            .getNumericCellValue());
                                    re.setRptnumber(number);
                                } else {
                                    re.setRptnumber(cell.getStringCellValue());
                                }
                            } else if (c == 3) {
                                if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) {
                                    String equ = String.valueOf(cell
                                            .getNumericCellValue());
                                    re.setEquipid(equ);
                                } else {
                                    re.setEquipid(cell.getStringCellValue());
                                }
                            } else if (c == 4) {
                                if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) {
                                    String ven = String.valueOf(cell
                                            .getNumericCellValue());
                                    re.setVendername(ven);
                                } else {
                                    re.setVendername(cell.getStringCellValue());
                                }
                            } else if (c == 5) {
                                if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) {
                                    String cna = String.valueOf(cell
                                            .getNumericCellValue());
                                    re.setVindicname(cna);
                                } else {
                                    re.setVindicname(cell.getStringCellValue());
                                }
                            } else if (c == 6) {
                                if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) {
                                    String are = String.valueOf(cell
                                            .getNumericCellValue());
                                    re.setAreaname(are);
                                } else {
                                    re.setAreaname(cell.getStringCellValue());
                                }
                            } else if (c == 7) {
                                if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) {
                                    String ctr = String.valueOf(cell
                                            .getNumericCellValue());
                                    re.setCtrlarea(ctr);
                                } else {
                                    re.setCtrlarea(cell.getStringCellValue());
                                }
                            } else if (c == 8) {
                                if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) {
                                    String typ = String.valueOf(cell
                                            .getNumericCellValue());
                                    re.setRpttype(typ);
                                } else {
                                    re.setRpttype(cell.getStringCellValue());
                                }
                            } else if (c == 9) {
                                if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) {
                                    String ch = String.valueOf(cell
                                            .getNumericCellValue());
                                    re.setTypechina(ch);
                                } else {
                                    re.setTypechina(cell.getStringCellValue());
                                }
                            } else if (c == 10) {
                                if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) {
                                    String bt = String.valueOf(cell
                                            .getNumericCellValue());
                                    re.setBtschina(bt);
                                } else {
                                    re.setBtschina(cell.getStringCellValue());
                                }
                            } else if (c == 11) {
                                if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) {
                                    String slave = String.valueOf(cell
                                            .getNumericCellValue());
                                    re.setSlave(slave);
                                } else {
                                    re.setSlave(cell.getStringCellValue());
                                }
                            } else if (c == 12) {
                                if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) {
                                    String ph = String.valueOf(cell
                                            .getNumericCellValue());
                                    re.setCtrlphone(ph);
                                } else {
                                    re.setCtrlphone(cell.getStringCellValue());
                                }
                            } else if (c == 13) {
                                if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) {
                                    String flag = String.valueOf(cell
                                            .getNumericCellValue());
                                    re.setCtrlflag(flag);
                                } else {
                                    re.setCtrlflag(cell.getStringCellValue());
                                }
                            } else if (c == 14) {
                                if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) {
                                    String st = String.valueOf(cell
                                            .getNumericCellValue());
                                    re.setStatus(st);
                                } else {
                                    re.setStatus(cell.getStringCellValue());
                                }
                            } else if (c == 15) {
                                if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) {
                                    String ce = String.valueOf(cell
                                            .getNumericCellValue());
                                    re.setCellid(ce);
                                } else {
                                    re.setCellid(cell.getStringCellValue());
                                }
                            } else if (c == 16) {
                                if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) {
                                    String lo = String.valueOf(cell
                                            .getNumericCellValue());
                                    re.setLongitude(lo);
                                } else {
                                    re.setLongitude(cell.getStringCellValue());
                                }
                            } else if (c == 17) {
                                if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) {
                                    String la = String.valueOf(cell
                                            .getNumericCellValue());
                                    re.setLatitude(la);
                                } else {
                                    re.setLatitude(cell.getStringCellValue());
                                }
                            } else if (c == 18) {
                                if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) {
                                    String po = String.valueOf(cell
                                            .getNumericCellValue());
                                    re.setPostion(po);
                                } else {
                                    re.setPostion(cell.getStringCellValue());
                                }
                            } else if (c == 19) {
                                if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) {
                                    String name = String.valueOf(cell
                                            .getNumericCellValue());
                                    re.setOwnername(name);
                                } else {
                                    re.setOwnername(cell.getStringCellValue());
                                }
                            } else if (c == 20) {
                                if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) {
                                    String phone = String.valueOf(cell
                                            .getNumericCellValue());
                                    re.setOwnerphone(phone);
                                } else {
                                    re.setOwnerphone(cell.getStringCellValue());
                                }
                            } else if (c == 21) {
                                if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) {
                                    String con = String.valueOf(cell
                                            .getNumericCellValue());
                                    re.setConfirmed(con);
                                } else {
                                    re.setConfirmed(cell.getStringCellValue());
                                }

                            }

                        }
                    }
                    reList.add(re);
                }
                // is.close();
            } else {
                System.out.println("找不到指定的文件");
            }

        } catch (Exception e) {
            System.out.println("讀取文件內(nèi)容出錯");
            reList = null;
            e.printStackTrace();
            return reList;
        }
        return reList;
    }
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市戏仓,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌赏殃,老刑警劉巖间涵,帶你破解...
    沈念sama閱讀 212,718評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異抗蠢,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)迅矛,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,683評論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來册赛,“玉大人震嫉,你說我怎么就攤上這事∑倍拢” “怎么了逮栅?”我有些...
    開封第一講書人閱讀 158,207評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長特纤。 經(jīng)常有香客問我侥加,道長,這世上最難降的妖魔是什么担败? 我笑而不...
    開封第一講書人閱讀 56,755評論 1 284
  • 正文 為了忘掉前任提前,我火速辦了婚禮,結(jié)果婚禮上狈网,老公的妹妹穿的比我還像新娘。我一直安慰自己拓哺,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 65,862評論 6 386
  • 文/花漫 我一把揭開白布窥摄。 她就那樣靜靜地躺著础淤,像睡著了一般哨苛。 火紅的嫁衣襯著肌膚如雪币砂。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 50,050評論 1 291
  • 那天亿蒸,我揣著相機(jī)與錄音掌桩,去河邊找鬼。 笑死波岛,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的贡蓖。 我是一名探鬼主播,決...
    沈念sama閱讀 39,136評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼斥铺,長吁一口氣:“原來是場噩夢啊……” “哼晾蜘!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起笙纤,我...
    開封第一講書人閱讀 37,882評論 0 268
  • 序言:老撾萬榮一對情侶失蹤组力,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后燎字,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,330評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡笼蛛,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,651評論 2 327
  • 正文 我和宋清朗相戀三年滨砍,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片惋戏。...
    茶點故事閱讀 38,789評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖绒窑,靈堂內(nèi)的尸體忽然破棺而出舔亭,到底是詐尸還是另有隱情,我是刑警寧澤钦铺,帶...
    沈念sama閱讀 34,477評論 4 333
  • 正文 年R本政府宣布,位于F島的核電站葬燎,受9級特大地震影響缚甩,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜擅威,卻給世界環(huán)境...
    茶點故事閱讀 40,135評論 3 317
  • 文/蒙蒙 一冈钦、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧瞧筛,春花似錦、人聲如沸较幌。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,864評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至底循,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間熙涤,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,099評論 1 267
  • 我被黑心中介騙來泰國打工猬错, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人倦炒。 一個月前我還...
    沈念sama閱讀 46,598評論 2 362
  • 正文 我出身青樓,卻偏偏與公主長得像逢唤,于是被迫代替她去往敵國和親涤浇。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,697評論 2 351

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

  • 第5章 引用類型(返回首頁) 本章內(nèi)容 使用對象 創(chuàng)建并操作數(shù)組 理解基本的JavaScript類型 使用基本類型...
    大學(xué)一百閱讀 3,219評論 0 4
  • 曾經(jīng)在《甄嬛傳》和《羋月傳》里霸氣外露的娘娘這次演了回野丫頭,孫儷的演技自是無話說纵顾,她將周瑩這個鬼馬機(jī)靈的江湖少女...
    小草禾刀閱讀 492評論 0 0
  • 文/徐小木 2016-12-13 猴年馬月 Horse month of the Monkey year ...
    徐小木閱讀 248評論 1 4
  • 細(xì)雨霏霏 人影憧憧 燈影被揉碎在匆促的腳步里 行道樹靜靜凝視 默默悉數(shù)漸濃的夜色 今天 即將謝幕 此刻你在做什么 ...
    流浪貓70s閱讀 156評論 0 3