Я хочу прочитать данные определенного столбца, применяя некоторые условия к другим столбцам, как я упоминал ниже.Вот что я пытался сделать.
while (iterator.hasNext()){
Row nextRow = iterator.next();
Iterator<Cell> cellIterator = nextRow.cellIterator();
while (cellIterator.hasNext()) {
Cell cell = cellIterator.next();
if(cell.getColumnIndex()==1){
if(cell.getNumericCellValue()==52){
System.out.println(/* print name from 0th column deep should be printed*/);
}
}
}
}