cardillo / joinery

Data frames for Java
https://joinery.sh
GNU General Public License v3.0
695 stars 167 forks source link

readXls method When reading xls, an exception will be caused if an empty column is encountered #114

Closed qadzhang closed 2 years ago

qadzhang commented 2 years ago

readXls method When reading xls, if an empty column is encountered, the content of the subsequent column will be filled in it, causing the data of the subsequent column of the generated dataframe to be inconsistent with the column corresponding to the data

in xls like: AA BB CC
sds   sd
readXls :
     AA BB  CC
 0  sds sd 
qadzhang commented 2 years ago

I've made a pull request to fix this issue