Skip to content

Latest commit

 

History

History
11 lines (11 loc) · 247 Bytes

README.md

File metadata and controls

11 lines (11 loc) · 247 Bytes

xlsx-parser

lightweight .xlsx file java parser without any dependencies

Workbook workbook = Workbook.getWorkbook(file);
Sheet sheet = workbook.getSheet(index);
for(Row row : sheet) {
  for(Cell cell : row) {
    //do something
  }
}