Jak wykonać iterację komórek Excela w Javie

Mam Excela z 2 rzędami i 5 kolumnami. Teraz wprowadziłem kod ręcznie, aby pobrać wartości z pierwszego rzędu. Jak mogę iterować proces?

Poniżej znajduje się kod pierwszego wiersza w programie Excel. Od drugiego rzędu nie wiem, jak to zrobić ... Chcę powtarzać jeden rząd po drugim.

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();

questionAnswers(3)

yourAnswerToTheQuestion