读取excel,遍历一个工作簿

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了读取excel,遍历一个工作簿相关的知识,希望对你有一定的参考价值。

原文链接:https://blog.csdn.net/class157/article/details/92816169,https://blog.csdn.net/class157/article/details/93237963

package cases;

import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFRow;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.poifs.filesystem.POIFSFileSystem;
import org.apache.poi.ss.usermodel.*;
import org.testng.annotations.Test;

import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;

/**
 * @description:
 * @author: lv
 * @time: 2020/5/22 14:21
 */
public class DemoTest {

    @Test
    public void testPoi()throws IOException {
        //建立输入流
        InputStream is = new FileInputStream("D:\\3.xls");
        //接受一个输入流
        POIFSFileSystem fs = new POIFSFileSystem(is);
        //创建了一个工作簿
        HSSFWorkbook wb = new HSSFWorkbook(fs);
        //获取第一个sheet页
        HSSFSheet hssfSheet = wb.getSheetAt(0);
        //判断Sheet是否为空
        if (hssfSheet == null) {
            return;
        }
        //遍历行row
        //continue只是终止本次循环,接着还执行后面的循环
        for (int rownum = 0; rownum <= hssfSheet.getLastRowNum(); rownum++) {
            //获取到每一行
            HSSFRow sheetRow = hssfSheet.getRow(rownum);
            if (sheetRow == null) {
                continue;
            }
            //遍历列cell
            for (int cellnum = 0; cellnum <= sheetRow.getLastCellNum(); cellnum++) {
                HSSFCell cell = sheetRow.getCell(cellnum);
                if (cell == null) {
                    continue;
                }
                //获取单元格的值
                System.out.print(" " + getValue(cell));
            }
        }
    }

    private static String getValue(HSSFCell hssfCell) {
        String cellValue = "";
        if(hssfCell == null){
            return cellValue;
        }
        //把数字当成String来读,避免出现1读成1.0的情况
        if(hssfCell.getCellType() == CellType.NUMERIC){
            hssfCell.setCellType(CellType.STRING);
        }

        //hssfCell.getCellType() 获取当前列的类型
        if (hssfCell.getCellType() == CellType.BOOLEAN) {
            cellValue = String.valueOf(hssfCell.getBooleanCellValue());
            return cellValue;
        } else if (hssfCell.getCellType() == CellType.NUMERIC) {
            hssfCell.setCellType(CellType.STRING);
            cellValue =  String.valueOf(hssfCell.getNumericCellValue());
            return cellValue;
        } else if(hssfCell.getCellType() == CellType.STRING){
            cellValue =  String.valueOf(hssfCell.getStringCellValue());
            return cellValue;
        }else if(hssfCell.getCellType() == CellType.FORMULA){
            cellValue =  String.valueOf(hssfCell.getCellFormula());
            return cellValue;
        }else if (hssfCell.getCellType() == CellType.BLANK){
            cellValue = " ";
            return cellValue;
        }else if(hssfCell.getCellType() == CellType.ERROR){
            cellValue = "非法字符";
            return cellValue;
        }else{
            cellValue = "未知类型";
            return cellValue;
        }

    }

}

注意点:

调用方式被弃用 
cell.setCellType(HSSFCell.CELL_TYPE_NUMERIC);
可以使用这个 
cell.setCellType(CellType.NUMERIC);

  

以上是关于读取excel,遍历一个工作簿的主要内容,如果未能解决你的问题,请参考以下文章

Excel VBA - 循环遍历多个文件夹中的文件,复制范围,粘贴到此工作簿中

有没有办法使用 openpyxl 读取没有工作簿的 Excel 文件?

Excel VBA 从关闭的工作簿中读取数据,带有 ADODB、动态范围和标题可选

Excel 读取

比较两个工作簿工作表excel vba

【OFFICE 365】Power Query 多工作簿合并