我正在编写一个java程序,使用apache poi读取excel表(xlsx)。我可以遍历所有单元格并获得所有值。但E10说,我无法获得特定的细胞价值。 有没有办法找到这个?
请参阅我用于迭代所有单元格的代码。
Limit 5,1
答案 0 :(得分:21)
例如,要获取第一个工作表的E10:
wb.getSheetAt(0).getRow(9).getCell(4);
注意:减去一,因为索引是基于空的。
您也可以使用此便捷方法将E映射到4。
wb.getSheetAt(0).getRow(9).getCell(CellReference.convertColStringToIndex("E"));
答案 1 :(得分:2)
XSSFSheet的方法是getRow(int rownum) 它返回逻辑行(从0开始)。如果您要求未定义的行,则会得到null。这就是说第4行代表工作表上的第五行。
获得行后,可以调用XSSFRow对象的getCell(int cellnum)方法。它返回给定(基于0)索引的单元格。
答案 2 :(得分:2)
要从excel中的特定单元格获取值,您可以使用以下代码行。
wb.getSheetAt(0).getRow(1).getCell(1);
答案 3 :(得分:1)
public class XmlFileRead {
public static void main(String[] args) throws IOException {
FileInputStream fi = new FileInputStream("abc.xls");
ArrayList<EmployeeVo> al = new ArrayList<>();
EmployeeVo evo = null;
Scanner scanner = null;
Workbook wb = new XSSFWorkbook(fi);
Sheet sh = wb.getSheet("Sheet0");
int starRow = sh.getFirstRowNum();
int endRow = sh.getLastRowNum();
for (int i = starRow + 1; i < endRow; i++) {
scanner = new Scanner(System.in);
evo = new EmployeeVo();
Cell c = wb.getSheetAt(0).getRow(i).getCell(1);
evo.setEmployeeId((int) c.getNumericCellValue());
Cell c2 = wb.getSheetAt(0).getRow(i).getCell(2);
evo.setEmployeeName(c2.toString());
// add to collection
al.add(evo);
} // for
al.forEach(i -> {
System.out.println(i.getEmployeeId() + " " + i.getEmployeeName());
});
}
}
答案 4 :(得分:0)
只需对getCell
方法进行版本升级
public XSSFCell getCell(string cellName){
Pattern r = Pattern.compile("^([A-Z]+)([0-9]+)$");
Matcher m = r.matcher(cellName);
if(m.matches()) {
columnName = m.group(1);
rowNumber = Integer.parseInt(m.group(2));
if(rowNumber > 0) {
return wb.getSheetAt(0).getRow(rowNumber-1).getCell(CellReference.convertColStringToIndex(columnName))
}
}
// throw an exception or return a null
}
现在您可以通过此行轻松获取单元格
getCell("E10")