Skip to content

lightweight .xlsx file java parser without any dependencies

Notifications You must be signed in to change notification settings

luzuojin/xlsx-parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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
  }
}

About

lightweight .xlsx file java parser without any dependencies

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages