Cómo hacer iteración celular de excel en java.

Estoy teniendo un excel con 2 filas y 5 columnas. Ahora ingresé el código manualmente para tomar valores de la primera fila. ¿Cómo puedo iterar el proceso?

A continuación se muestra el código de la primera fila en Excel. A partir de la segunda fila, no sé cómo hacerlo ... Quiero iterar una fila tras otra.

Workbook workbook = Workbook.getWorkbook(new File(
                               "\\C:\\users\\a-4935\\Desktop\\DataPool_CA.xls"));
Sheet sheet = workbook.getSheet("Sheet1");
System.out.println("Reached to Sheet");
Cell a = sheet.getCell(2,1);
Cell b = sheet.getCell(3,1);
Cell c = sheet.getCell(4,1);
Cell d = sheet.getCell(5,1);
Cell e = sheet.getCell(6,1);
Cell f = sheet.getCell(7,1);
Cell g = sheet.getCell(8,1);
Cell h = sheet.getCell(9,1);
Cell i = sheet.getCell(10,1);

String uId              =   a.getContents();
String deptFromDat      =   b.getContents();
String deptToDate       =   c.getContents();
String dept1            =   d.getContents();
String arrival1         =   e.getContents();
String eihon1           =   f.getContents();
String branchCode1      =   g.getContents();
String userType1        =   h.getContents();
String sessionId1       =   i.getContents();

Respuestas a la pregunta(3)

Su respuesta a la pregunta