I have two column namely Setup and Request in excel, need to write multiple rows in excel using java
public void WriteExcelValues() throws IOException {
String Ustr= setup.getText();
String urequest = request.getText();
File file = new File(System.getProperty("user.dir")
+ "/src/main/uat/testdata/FreeTestData.xlsx");
FileInputStream fis = new FileInputStream(file);
Workbook workbook = new XSSFWorkbook(fis);
Sheet sheet = workbook.getSheetAt(0);
int lastRow = sheet.getLastRowNum();
int n = 1;
for (int i = 1; i <= n; i++) {
Row row = sheet.getRow(i);
Cell cell = row.createCell(8);
Cell cell1 = row.createCell(9);
cell.setCellValue(Ustr);
cell1.setCellValue(urequest);
//cell.setCellValue("AcknowledgementId");
}
FileOutputStream fos = new FileOutputStream(file);
workbook.write(fos);
fos.close();
}
for example
Above code is not complete and doesn't satisfy the criteria also.
