服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Java教程 - Java实现导入导出Excel文件的方法(poi,jxl)

Java实现导入导出Excel文件的方法(poi,jxl)

2021-01-30 11:27少年锦阳 Java教程

这篇文章主要介绍了Java实现导入导出Excel文件的方法(poi,jxl),本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

目前,比较常用的实现Java导入、导出Excel的技术有两种Jakarta POI和Java Excel直接上代码:

一,POI

POI是apache的项目,可对微软的Word,Excel,Ppt进行操作,包括office2003和2007,Excl2003和2007。poi现在一直有更新。所以现在主流使用POI。

xls:

pom:

?
1
2
3
4
5
6
7
8
9
10
<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>

导出:

  1. public class PoiCreateExcel { 
  2.  
  3.  public static void main(String[] args) { 
  4.   // 创建表头 
  5.   String[] title = {"id","name","sex"}; 
  6.   //创建Excel工作薄 
  7.   HSSFWorkbook workbook = new HSSFWorkbook(); 
  8.   //创建一个工作表sheet 
  9.   HSSFSheet sheet = workbook.createSheet(); 
  10.   //创建第一行 
  11.   HSSFRow row = sheet.createRow(0); 
  12.   HSSFCell cell = null
  13.   // 插入第一行 
  14.   for (int i = 0; i < title.length; i++) { 
  15.    cell = row.createCell(i); 
  16.    cell.setCellValue(title[i]); 
  17.   } 
  18.   // 追加数据 
  19.   for (int i = 1; i < 10; i++) {// 这里的int 起始是1 也就是第二行开始 
  20.    HSSFRow nexTrow = sheet.createRow(i); 
  21.    HSSFCell cell2 = nexTrow.createCell(0); 
  22.    cell2.setCellValue("a"+i); 
  23.    cell2 = nexTrow.createCell(1); 
  24.    cell2.setCellValue("user"); 
  25.    cell2 = nexTrow.createCell(2); 
  26.    cell2.setCellValue("男"); 
  27.   } 
  28.   // 创建一个文件 
  29.   File file = new File("d:/poi.xls"); 
  30.   try { 
  31.    file.createNewFile(); 
  32.    // 将内容存盘 
  33.    FileOutputStream stream = FileUtils.openOutputStream(file); 
  34.    workbook.write(stream); 
  35.  
  36.    stream.close(); 
  37.   } catch (Exception e) { 
  38.    e.printStackTrace(); 
  39.   } 
  40.  } 

导入:

  1. public class PoiReadExcel { 
  2.  
  3.  public static void main(String[] args) { 
  4.  
  5.   // 引入需要解析的文件 
  6.   File file = new File("d:/poi.xls"); 
  7.   try { 
  8.    // 创建Excel 读取文件内容 
  9.    HSSFWorkbook workbook = new HSSFWorkbook(FileUtils.openInputStream(file)); 
  10.    /** 
  11.     * 第一种方式读取Sheet页 
  12.     */ 
  13. //   HSSFSheet sheet = workbook.getSheet("Sheet0"); 
  14.    /** 
  15.     * 第二种方式读取Sheet页 
  16.     */ 
  17.    HSSFSheet sheet = workbook.getSheetAt(0); 
  18.    int firstRowNum = 0;// 起始行第0行 
  19.    int lasrRowNum = sheet.getLastRowNum();// 一直读到最后一行 
  20.    for (int i = 0; i < lasrRowNum; i++) { 
  21.     HSSFRow row = sheet.getRow(i); 
  22.     // 获取当前最后单元格列号 
  23.     int lastCellNum = row.getLastCellNum(); 
  24.     for (int j = 0; j < lastCellNum; j++) { 
  25.      HSSFCell cell = row.getCell(j); 
  26.      String value = cell.getStringCellValue();// 注意! 如果Excel 里面的值是String 那么getStringCellValue 如果是其他类型 则需要修改 
  27.      System.out.print(value + " "); 
  28.     } 
  29.     System.out.println(); 
  30.    } 
  31.  
  32.   } catch (Exception e) { 
  33.    e.printStackTrace(); 
  34.   } 
  35.  } 

xlsx:

pom:

  1. <!-- poi高版本额外包 --> 
  2. <dependency> 
  3.     <groupId>org.apache.poi</groupId> 
  4.     <artifactId>poi-examples</artifactId> 
  5.     <version>3.9</version> 
  6. </dependency> 
  7. <dependency> 
  8.     <groupId>org.apache.poi</groupId> 
  9.     <artifactId>poi-excelant</artifactId> 
  10.     <version>3.9</version> 
  11. </dependency> 
  12. <dependency> 
  13.     <groupId>org.apache.poi</groupId> 
  14.     <artifactId>poi-ooxml</artifactId> 
  15.     <version>3.9</version> 
  16. </dependency> 
  17. <dependency> 
  18.     <groupId>org.apache.poi</groupId> 
  19.     <artifactId>poi-ooxml-schemas</artifactId> 
  20.     <version>3.9</version> 
  21. </dependency> 
  22. <dependency> 
  23.     <groupId>org.apache.poi</groupId> 
  24.     <artifactId>poi-scratchpad</artifactId> 
  25.     <version>3.9</version> 
  26. </dependency> 

导出:

  1. public class PoiCreateExcel { 
  2.  
  3.  public static void main(String[] args) { 
  4.   // 创建表头 
  5.   String[] title = {"id","name","sex"}; 
  6.   //创建Excel工作薄 
  7.   XSSFWorkbook workbook = new XSSFWorkbook(); 
  8.   //创建一个工作表shheet 
  9.   Sheet sheet = workbook.createSheet(); 
  10.   //创建第一行 
  11.   Row row = sheet.createRow(0); 
  12.   Cell cell = null
  13.   // 插入第一行 
  14.   for (int i = 0; i < title.length; i++) { 
  15.    cell = row.createCell(i); 
  16.    cell.setCellValue(title[i]); 
  17.   } 
  18.   // 追加数据 
  19.   for (int i = 1; i < 10; i++) {// 这里的int 起始是1 也就是第二行开始 
  20.    Row nexTrow = sheet.createRow(i); 
  21.    Cell cell2 = nexTrow.createCell(0); 
  22.    cell2.setCellValue("a"+i); 
  23.    cell2 = nexTrow.createCell(1); 
  24.    cell2.setCellValue("user"); 
  25.    cell2 = nexTrow.createCell(2); 
  26.    cell2.setCellValue("男"); 
  27.   } 
  28.   // 创建一个文件 
  29.   File file = new File("d:/poi.xlsx");// 这里可以修改成高版本的 
  30.   try { 
  31.    file.createNewFile(); 
  32.    // 将内容存盘 
  33.    FileOutputStream stream = FileUtils.openOutputStream(file); 
  34.    workbook.write(stream); 
  35.  
  36.    stream.close(); 
  37.   } catch (Exception e) { 
  38.    e.printStackTrace(); 
  39.   } 
  40.  } 

导入:

  1. public class PoiReadExcel { 
  2.  public List<Double> readExcels(InputStream is)throws Exception{ 
  3.   List<Double> xlsxList = new ArrayList<Double>(); 
  4.   try { 
  5.    if(is ==null){ 
  6.     throw new IOException("文件不正确!"); 
  7.    } 
  8.    Workbook workbook = WorkbookFactory.create(is); 
  9.    FormulaEvaluator fe = workbook.getCreationHelper().createFormulaEvaluator(); 
  10.    //获取第一张表 
  11.    Sheet sheet = workbook.getSheetAt(0); 
  12.    if(sheet == null){ 
  13.     throw new IOException("传入的excel的第一张表为空!"); 
  14.    } 
  15.    for(int rowNum = 0;rowNum <= sheet.getLastRowNum(); rowNum++){ 
  16.     Row row = sheet.getRow(rowNum); 
  17.     if(row != null){ 
  18.      //获得当前行的开始列 
  19.      int firstCellNum = row.getFirstCellNum(); 
  20.      //获得当前行的列数 
  21.      int lastCellNum = row.getPhysicalNumberOfCells(); 
  22.      String result = ""
  23.      //循环当前行 
  24.      for(int cellNum = firstCellNum; cellNum < lastCellNum;cellNum++){ 
  25.       Cell cell = row.getCell(cellNum); 
  26.       double value = 0; 
  27.       String valueString = cell.getStringCellValue(); 
  28.       if(null!=fe.evaluate(cell)){ 
  29.        value = fe.evaluate(cell).getNumberValue(); 
  30.       } 
  31.       //result = result + cellNum + ":"+value + "----"; 
  32.       result = result + cellNum + ":"+valueString + "----"
  33.      } 
  34.      System.out.println(result + " "); 
  35.     } 
  36.    } 
  37.    is.close(); 
  38.   } catch (FileNotFoundException e) { 
  39.   throw new Exception("文件不正确!"); 
  40.  } 
  41.   return xlsxList; 
  42.  } 
  43.  
  44.  public static void main(String[] args) throws Exception { 
  45.   InputStream is = new FileInputStream("d:/poi.xlsx"); 
  46.   PoiReadExcel re = new PoiReadExcel(); 
  47.   re.readExcels(is); 
  48.  } 

二,JXL

JXL只能对Excel进行操作,属于比较老的框架,它只支持到Excel 95-2000的版本。现在已经停止更新和维护。

pom:

  1. <!-- jxl --> 
  2. <dependency> 
  3.     <groupId>net.sourceforge.jexcelapi</groupId> 
  4.     <artifactId>jxl</artifactId> 
  5.     <version>2.6.10</version> 
  6. </dependency> 

导出:

  1. public class JxlCreateExcel { 
  2.  
  3.  public static void main(String[] args) { 
  4.   // 首先设置表格第一行 表格头名称 也就是列名 
  5.   String [] title = {"id","name","sex"}; 
  6.   // 创建Excel文件 存入路径 
  7.   File file = new File("d:/jxl.xls"); 
  8.   try { 
  9.    file.createNewFile(); 
  10.    // 创建工作薄 
  11.    WritableWorkbook workbook = Workbook.createWorkbook(file); 
  12.    // 创建sheet 
  13.    WritableSheet sheet = workbook.createSheet("sheet1",0); 
  14.    // 添加数据 
  15.    Label label = null
  16.    // 第一行设置列名 
  17.    for (int i = 0; i < title.length; i++) { 
  18.     label = new Label(i,0,title[i]); 
  19.     sheet.addCell(label); 
  20.    } 
  21.    // 追加数据 从第二行开始 i从1开始 
  22.    for (int i = 1; i < 9; i++) { 
  23.     label = new Label(0,i,"id:"+i); 
  24.     sheet.addCell(label); 
  25.     label = new Label(1,i,"user"); 
  26.     sheet.addCell(label); 
  27.     label = new Label(2,i,"男"); 
  28.     sheet.addCell(label); 
  29.    } 
  30.    // 写入 并在最后关闭流 
  31.    workbook.write(); 
  32.    workbook.close(); 
  33.   } catch (Exception e) { 
  34.    e.printStackTrace(); 
  35.   } 
  36.  } 

导入:

  1. public class JxlReadExcel { 
  2.  
  3.  public static void main(String[] args) { 
  4.   try { 
  5.    // 创建 Workbook 
  6.    Workbook workbook = Workbook.getWorkbook(new File("d:/jxl.xls")); 
  7.    // 获取工作表sheet 
  8.    Sheet sheet = workbook.getSheet(0); 
  9.    // 获取数据 
  10.    for (int i = 0; i < sheet.getRows(); i++) {// 获取行 
  11.     for (int j = 0; j < sheet.getColumns(); j++) {// 获取列 
  12.      Cell cell = sheet.getCell(j,i); 
  13.      System.out.print(cell.getContents() + " ");// 得到单元格的内容 
  14.     } 
  15.     System.out.println(); 
  16.    } 
  17.    workbook.close(); 
  18.   } catch (Exception e) { 
  19.    e.printStackTrace(); 
  20.   } 
  21.  } 

到此,代码可直接部署运行,希望可以帮助到你~

总结

到此这篇关于Java实现导入导出Excel文件的方法(poi,jxl)的文章就介绍到这了,更多相关java实现导入导出excel文件内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/qq_45150222/article/details/105012569

延伸 · 阅读

精彩推荐