I have been trying to use XSSF and SAX event API as it is mentioned in here to read a large excel file. They have used several key words as c, r, t, s when calling getValue() function as it is shown in below code.
if(name.equals("c")) {
// Print the cell reference
System.out.print(attributes.getValue("r") + " - ");
// Figure out if the value is an index in the SST
String cellType = attributes.getValue("t");
if(cellType != null && cellType.equals("s")) {
nextIsString = true;
} else {
nextIsString = false;
}
}
I need to figure out possible characters I can use and any description as to when and where to use it. I have been searching through the net to find a clear description about possible key words for queName ('name' as it is mentioned here) and attributes. But I was unable to find a clear description.
Appreciate if anyone can explain it bit more. Thanks in advance.