在日常工作中,我們常常會進(jìn)行文件讀寫操作,除去我們最常用的純文本文件讀寫,更多時候我們需要對Excel中的數(shù)據(jù)進(jìn)行讀取操作,本文將介紹Excel讀寫的常用方法,希望對大家學(xué)習(xí)Java讀寫Excel會有幫助。
成都創(chuàng)新互聯(lián)-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價比嘉善網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式嘉善網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋嘉善地區(qū)。費(fèi)用合理售后完善,十余年實(shí)體公司更值得信賴。
package com.zhx.base.utils; import org.apache.poi.hssf.usermodel.HSSFWorkbook; import org.apache.poi.ss.usermodel.*; import org.apache.poi.xssf.usermodel.XSSFWorkbook; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import java.util.ArrayList; import java.util.List; /** * POI解析Excel */ public class ExcelReaderUtil { /** * 根據(jù)fileType不同讀取excel文件 * * @param path * @param path * @throws IOException */ public static List> readExcel(String path) { String fileType = path.substring(path.lastIndexOf(".") + 1); // return a list contains many list List
> lists = new ArrayList
>(); //讀取excel文件 InputStream is = null; try { is = new FileInputStream(path); //獲取工作薄 Workbook wb = null; if (fileType.equals("xls")) { wb = new HSSFWorkbook(is); } else if (fileType.equals("xlsx")) { wb = new XSSFWorkbook(is); } else { return null; } //讀取第一個工作頁sheet Sheet sheet = wb.getSheetAt(0); //第一行為標(biāo)題 for (Row row : sheet) { ArrayList
list = new ArrayList (); for (Cell cell : row) { //根據(jù)不同類型轉(zhuǎn)化成字符串 cell.setCellType(Cell.CELL_TYPE_STRING); list.add(cell.getStringCellValue()); } lists.add(list); } } catch (IOException e) { e.printStackTrace(); } finally { try { if (is != null) is.close(); } catch (IOException e) { e.printStackTrace(); } } return lists; } /** * 創(chuàng)建Excel.xls * @param lists 需要寫入xls的數(shù)據(jù) * @param titles 列標(biāo)題 * @param name 文件名 * @return * @throws IOException */ public static Workbook creatExcel(List > lists, String[] titles, String name) throws IOException { System.out.println(lists); //創(chuàng)建新的工作薄 Workbook wb = new HSSFWorkbook(); // 創(chuàng)建第一個sheet(頁),并命名 Sheet sheet = wb.createSheet(name); // 手動設(shè)置列寬。第一個參數(shù)表示要為第幾列設(shè);,第二個參數(shù)表示列的寬度,n為列高的像素數(shù)。 for(int i=0;i
> lists = readExcel(path); for (List list : lists) { for (String strs : list) { System.out.println(strs); } } } }
需要導(dǎo)入的jar包:
org.apache.poi poi-excelant 3.14
準(zhǔn)備需要讀寫的文件:
上述工具類中將每行放到一個list中,然后每行的每列放入到一個list中,這里再根據(jù)自己需求去對表中數(shù)據(jù)進(jìn)行處理:
我現(xiàn)在要取得企業(yè)名稱(資和信***)和從第七行起開始的id、姓名、識別號存入數(shù)據(jù)庫中,這邊我只展示service層處理,mybatis進(jìn)行批量插入:
public Map insEm(File file) throws FileNotFoundException { String companyName = ""; String epid = ""; List
insert into qf_employee_info(epid,employee_id,user_name,phone,user_email,status,create_time,creater,create_type) value (#{item.epid},"",#{item.name},#{item.identify},"",1,now(),"",2)
最后數(shù)據(jù)庫
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。