亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

您的位置:首頁技術(shù)文章
文章詳情頁

Java實現(xiàn)導(dǎo)入導(dǎo)出Excel文件的方法(poi,jxl)

瀏覽:82日期:2022-05-26 17:59:28

目前,比較常用的實現(xiàn)Java導(dǎo)入、導(dǎo)出Excel的技術(shù)有兩種Jakarta POI和Java Excel直接上代碼:

一,POI

POI是apache的項目,可對微軟的Word,Excel,Ppt進行操作,包括office2003和2007,Excl2003和2007。poi現(xiàn)在一直有更新。所以現(xiàn)在主流使用POI。

xls:

pom:

<dependency><groupId>org.apache.poi</groupId><artifactId>poi-ooxml</artifactId><version>3.9</version></dependency><dependency><groupId>commons-io</groupId><artifactId>commons-io</artifactId><version>2.2</version></dependency>

導(dǎo)出:

public class PoiCreateExcel { public static void main(String[] args) { // 創(chuàng)建表頭 String[] title = {'id','name','sex'}; //創(chuàng)建Excel工作薄 HSSFWorkbook workbook = new HSSFWorkbook(); //創(chuàng)建一個工作表sheet HSSFSheet sheet = workbook.createSheet(); //創(chuàng)建第一行 HSSFRow row = sheet.createRow(0); HSSFCell cell = null; // 插入第一行 for (int i = 0; i < title.length; i++) { cell = row.createCell(i); cell.setCellValue(title[i]); } // 追加數(shù)據(jù) for (int i = 1; i < 10; i++) {// 這里的int 起始是1 也就是第二行開始 HSSFRow nexTrow = sheet.createRow(i); HSSFCell cell2 = nexTrow.createCell(0); cell2.setCellValue('a'+i); cell2 = nexTrow.createCell(1); cell2.setCellValue('user'); cell2 = nexTrow.createCell(2); cell2.setCellValue('男'); } // 創(chuàng)建一個文件 File file = new File('d:/poi.xls'); try { file.createNewFile(); // 將內(nèi)容存盤 FileOutputStream stream = FileUtils.openOutputStream(file); workbook.write(stream); stream.close(); } catch (Exception e) { e.printStackTrace(); } }}

導(dǎo)入:

public class PoiReadExcel { public static void main(String[] args) { // 引入需要解析的文件 File file = new File('d:/poi.xls'); try { // 創(chuàng)建Excel 讀取文件內(nèi)容 HSSFWorkbook workbook = new HSSFWorkbook(FileUtils.openInputStream(file)); /** * 第一種方式讀取Sheet頁 */// HSSFSheet sheet = workbook.getSheet('Sheet0'); /** * 第二種方式讀取Sheet頁 */ HSSFSheet sheet = workbook.getSheetAt(0); int firstRowNum = 0;// 起始行第0行 int lasrRowNum = sheet.getLastRowNum();// 一直讀到最后一行 for (int i = 0; i < lasrRowNum; i++) { HSSFRow row = sheet.getRow(i); // 獲取當前最后單元格列號 int lastCellNum = row.getLastCellNum(); for (int j = 0; j < lastCellNum; j++) { HSSFCell cell = row.getCell(j); String value = cell.getStringCellValue();// 注意! 如果Excel 里面的值是String 那么getStringCellValue 如果是其他類型 則需要修改 System.out.print(value + ' '); } System.out.println(); } } catch (Exception e) { e.printStackTrace(); } }}

xlsx:

pom:

<!-- poi高版本額外包 --><dependency><groupId>org.apache.poi</groupId><artifactId>poi-examples</artifactId><version>3.9</version></dependency><dependency><groupId>org.apache.poi</groupId><artifactId>poi-excelant</artifactId><version>3.9</version></dependency><dependency><groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId><version>3.9</version></dependency><dependency><groupId>org.apache.poi</groupId><artifactId>poi-ooxml-schemas</artifactId><version>3.9</version></dependency><dependency><groupId>org.apache.poi</groupId><artifactId>poi-scratchpad</artifactId> <version>3.9</version></dependency>

導(dǎo)出:

public class PoiCreateExcel { public static void main(String[] args) { // 創(chuàng)建表頭 String[] title = {'id','name','sex'}; //創(chuàng)建Excel工作薄 XSSFWorkbook workbook = new XSSFWorkbook(); //創(chuàng)建一個工作表shheet Sheet sheet = workbook.createSheet(); //創(chuàng)建第一行 Row row = sheet.createRow(0); Cell cell = null; // 插入第一行 for (int i = 0; i < title.length; i++) { cell = row.createCell(i); cell.setCellValue(title[i]); } // 追加數(shù)據(jù) for (int i = 1; i < 10; i++) {// 這里的int 起始是1 也就是第二行開始 Row nexTrow = sheet.createRow(i); Cell cell2 = nexTrow.createCell(0); cell2.setCellValue('a'+i); cell2 = nexTrow.createCell(1); cell2.setCellValue('user'); cell2 = nexTrow.createCell(2); cell2.setCellValue('男'); } // 創(chuàng)建一個文件 File file = new File('d:/poi.xlsx');// 這里可以修改成高版本的 try { file.createNewFile(); // 將內(nèi)容存盤 FileOutputStream stream = FileUtils.openOutputStream(file); workbook.write(stream); stream.close(); } catch (Exception e) { e.printStackTrace(); } }}

導(dǎo)入:

public class PoiReadExcel { public List<Double> readExcels(InputStream is)throws Exception{ List<Double> xlsxList = new ArrayList<Double>(); try { if(is ==null){ throw new IOException('文件不正確!'); } Workbook workbook = WorkbookFactory.create(is); FormulaEvaluator fe = workbook.getCreationHelper().createFormulaEvaluator(); //獲取第一張表 Sheet sheet = workbook.getSheetAt(0); if(sheet == null){ throw new IOException('傳入的excel的第一張表為空!'); } for(int rowNum = 0;rowNum <= sheet.getLastRowNum(); rowNum++){ Row row = sheet.getRow(rowNum); if(row != null){ //獲得當前行的開始列 int firstCellNum = row.getFirstCellNum(); //獲得當前行的列數(shù) int lastCellNum = row.getPhysicalNumberOfCells(); String result = ''; //循環(huán)當前行 for(int cellNum = firstCellNum; cellNum < lastCellNum;cellNum++){ Cell cell = row.getCell(cellNum); double value = 0; String valueString = cell.getStringCellValue(); if(null!=fe.evaluate(cell)){ value = fe.evaluate(cell).getNumberValue(); } //result = result + cellNum + ':'+value + '----'; result = result + cellNum + ':'+valueString + '----'; } System.out.println(result + ' '); } } is.close(); } catch (FileNotFoundException e) { throw new Exception('文件不正確!'); } return xlsxList; } public static void main(String[] args) throws Exception { InputStream is = new FileInputStream('d:/poi.xlsx'); PoiReadExcel re = new PoiReadExcel(); re.readExcels(is); }}

二,JXL

JXL只能對Excel進行操作,屬于比較老的框架,它只支持到Excel 95-2000的版本。現(xiàn)在已經(jīng)停止更新和維護。

pom:

<!-- jxl --><dependency><groupId>net.sourceforge.jexcelapi</groupId><artifactId>jxl</artifactId><version>2.6.10</version></dependency>

導(dǎo)出:

public class JxlCreateExcel { public static void main(String[] args) { // 首先設(shè)置表格第一行 表格頭名稱 也就是列名 String [] title = {'id','name','sex'}; // 創(chuàng)建Excel文件 存入路徑 File file = new File('d:/jxl.xls'); try { file.createNewFile(); // 創(chuàng)建工作薄 WritableWorkbook workbook = Workbook.createWorkbook(file); // 創(chuàng)建sheet WritableSheet sheet = workbook.createSheet('sheet1',0); // 添加數(shù)據(jù) Label label = null; // 第一行設(shè)置列名 for (int i = 0; i < title.length; i++) { label = new Label(i,0,title[i]); sheet.addCell(label); } // 追加數(shù)據(jù) 從第二行開始 i從1開始 for (int i = 1; i < 9; i++) { label = new Label(0,i,'id:'+i); sheet.addCell(label); label = new Label(1,i,'user'); sheet.addCell(label); label = new Label(2,i,'男'); sheet.addCell(label); } // 寫入 并在最后關(guān)閉流 workbook.write(); workbook.close(); } catch (Exception e) { e.printStackTrace(); } }}

導(dǎo)入:

public class JxlReadExcel { public static void main(String[] args) { try { // 創(chuàng)建 Workbook Workbook workbook = Workbook.getWorkbook(new File('d:/jxl.xls')); // 獲取工作表sheet Sheet sheet = workbook.getSheet(0); // 獲取數(shù)據(jù) for (int i = 0; i < sheet.getRows(); i++) {// 獲取行 for (int j = 0; j < sheet.getColumns(); j++) {// 獲取列 Cell cell = sheet.getCell(j,i); System.out.print(cell.getContents() + ' ');// 得到單元格的內(nèi)容 } System.out.println(); } workbook.close(); } catch (Exception e) { e.printStackTrace(); } }}

到此,代碼可直接部署運行,希望可以幫助到你~

總結(jié)

到此這篇關(guān)于Java實現(xiàn)導(dǎo)入導(dǎo)出Excel文件的方法(poi,jxl)的文章就介紹到這了,更多相關(guān)java實現(xiàn)導(dǎo)入導(dǎo)出excel文件內(nèi)容請搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!

標簽: excel
主站蜘蛛池模板: 毛片在线播放网址 | 成人久久网站 | 夜夜爱成人免费网站 | 王色在线观看视频 | 女人毛片a级大学毛片免费 女人毛片在线 | 国产免费不卡视频 | 91免费视| yellow中文字幕在线 | 网红主播vip福利视频 | 亚欧中文字幕 | 欧美激情精品久久久久久大尺度 | 亚洲不卡| 亚洲最大在线视频 | 亚洲日本国产 | 免费观看欧美一级特黄 | 黄色一级片欧美 | 出a级黑粗大硬长爽猛视频 加勒比一道本综合 | 国产乱仑 | 久草在线视频福利 | 久久www免费人成高清 | 亚洲欧美一区二区三区二厂 | 国产福利视频奶水在线 | 国产第一亚洲 | 国产欧美另类久久精品91 | 国产亚洲美女精品久久久2020 | 色视频在线观看 | 亚洲精品色一区色二区色三区 | 综合久久一区二区三区 | 手机看片福利日韩欧美看片 | 国产精品品福利视频 | 日韩a级一片在线观看 | 伊人久久91 | 欧美卡1卡2卡三卡网站入口 | 亚洲精品一区二区三区四区手机版 | 在线免费观看国产 | 婷婷丁香色综合狠狠色 | 国语自产免费精品视频一区二区 | 久国产精品视频 | 香港三级理论在线影院 | 久久国产乱子伦精品免费一 | 99青青草 |