How to use POI library

Dependency

1
2
3
compile group: 'org.apache.xmlbeans', name: 'xmlbeans', version: '3.1.0'
compile group: 'org.apache.commons', name: 'commons-compress', version: '1.18'
compile group: 'org.apache.commons', name: 'commons-collections4', version: '4.1'

Create Workbook

1
Workbook xlsxWb = new XSSFWorkbook();

Create Sheet

1
Sheet sheet = xlsxWb.createSheet("SHEETNAME");

Create Row

1
Row row = sheet.createRow(0);

Create Cell

1
Cell cell = row.createCell(0);
Share