我需要阅读具有标题和 N.of 行的 excel 内容。根据列标题输入,需要在JAVA中提取行。
我已经阅读了完整的 excel 内容的 java 代码。
//Create Workbook instance holding reference to .xlsx file
XSSFWorkbook workbook = new XSSFWorkbook(file);
//Get first/desired sheet from the workbook
XSSFSheet sheet = workbook.getSheetAt(0);
int totalRows = sheet.getPhysicalNumberOfRows();
//Iterate through each rows one by one
Iterator<Row> rowIterator = sheet.iterator();
while (rowIterator.hasNext())
{
Row row = rowIterator.next();
//For each row, iterate through all the columns
Iterator<Cell> cellIterator = row.cellIterator();
while (cellIterator.hasNext())
{
Cell cell = cellIterator.next();
//Check the cell type and format accordingly
switch (cell.getCellType())
{
case Cell.CELL_TYPE_NUMERIC:
System.out.print(cell.getNumericCellValue() + "\t");
break;
case Cell.CELL_TYPE_STRING:
System.out.print(cell.getStringCellValue() + "\t");
break;
}
}
System.out.println("");
Excel 内容
Coln1 Coln2 Coln3 Coln4
A 12 nice 3e
A 23 talk s2
A 43 res 23
B 11 xl 34
B 88 out r45
C 45 tr h5
预期结果
if (Coln1==B)
{
Loop the list of B rows (here its 2 rows)
Coln1 Coln2 Coln3 Coln4
B 11 xl 34
B 88 out r45
if i need , r45 , How to pass the row cell to get the value?
}
有人可以帮忙吗?谢谢