java中poi怎么获取指定列的行数?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中poi怎么获取指定列的行数?相关的知识,希望对你有一定的参考价值。
比如说这是两列,行数不一样,怎么分别获取?
读取excel中的数据,先加载好excel表,然后逐行逐列读取即可。对于上面的行数不一样,其实行数是一样的,只是下面两行的C列数据为空而已,代码中加上判断即可。
示例代码如下:
for(int rowIndex=0;rowIndex<sheet.getPhysicalNumberOfRows();rowIndex++)
Row row = sheet.getRow(rowIndex);
if(row == null) continue;
for(int cellIndex=0;cellIndex<row.getPhysicalNumberOfCells();cellIndex++)
Cell content = row.getCell(cellIndex);
if(content== null) continue; //判断空
//对于内容进行操作
....
有问题欢迎提问,满意请采纳,谢谢! 参考技术A HSSFWorkbook wb; HSSFSheet sheet; HSSFRow row; HSSFCell cell;// 获得Excel文件 public void openExl() Frame f = new Frame("test for filedialog"); FileDialog file = new FileDialog(f, "new"); file.setVisible(true); path = file.getDirectory() + file.getFile(); path = path.replace("\\", "/"); System.out.println(path); // 获得Excel文件 public void openExl(String name) path = name; System.out.println(path); public void getExl() try myxls = new FileInputStream(path); wb = new HSSFWorkbook(myxls); ...
以上是关于java中poi怎么获取指定列的行数?的主要内容,如果未能解决你的问题,请参考以下文章
使用POI读取EXCEL中的数据如何获得表中实际数据的行数?