ozlerhakan / poiji

:candy: A library converting XLS and XLSX files to a list of Java objects based on Apache POI

Home Page:https://ozlerhakan.github.io/poiji/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Empty row on parsing.

emtn opened this issue · comments

commented

Hello i am parsing two different xlsx files

Both of them have a blank row ,
but on the first one it avoids the blank line and continues to read the rest of the rows.
On the second file it reads values from the blank row cells and create object with null values on its fields
or translating some empty cells ,but not all, to 0,0.

eg.

@ExcelCell(2)
private String name;

@ExcelCell(4)
private BigDecimal a;

@ExcelCell(5)
private BigDecimal b;

@ExcelCell(6)
private BigDecimal c;

Object(null,null,0,0,null)

Thank you for contributing to Poiji! Feel free to create a PR If you want to contribute directly :)

Hi @emtn , Could you share your excel file with me?

I'm closing this because there is no response for 2 weeks