2个回答
展开全部
读取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; //判断空
//对于内容进行操作
....
}
}
有问题欢迎提问,满意请采纳,谢谢!
对于上面的行数不一样,其实行数是一样的,只是下面两行的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; //判断空
//对于内容进行操作
....
}
}
有问题欢迎提问,满意请采纳,谢谢!
2015-06-13
展开全部
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); ...
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询