我一直在测试一个应用程序,我必须将一组结果写入 excel 文件,这些值取自脚本。但问题是,首先我必须设置列标题,如“Sl No”和“Name”,然后我必须针对特定单元格打印值。问题是我无法在特定框下写出结果。
我是apache poi的新手。谁能帮我解决这个问题。
设置excel和标题的代码如下所示,
String FileName = "C://Users//Desktop//filename.xlsx";
XSSFWorkbook workBook = new XSSFWorkbook();
XSSFSheet sheet = workBook.createSheet("Distributor");
Row row = sheet.createRow(0);
Cell cell = row.createCell(0);
cell.setCellValue("Sl No");
Cell cell2 = row.createCell(1);
cell2.setCellValue("Name");
FileOutputStream outputStream = new FileOutputStream(new File(FileName));
workBook.write(outputStream);
outputStream.close();