I am using this library with Java and trying to parse an excel file. A few of my cells just have ... in them. When the parser hits this cell, it does not detect anything in it and continues on. It is a test cell and I am using the getStringValue. Any ideas on why this would be happening? I have put in a fail clause to fail if it sees it and it wont trigger
if (curCell.getStringCellValue().equals("...")) {
fail("Could be a trim issue");
}
Thanks