Previously I've discussed XLS2CSVmra on this list, ref
https://issues.apache.org/bugzilla/show_bug.cgi?id=45365
I see from the 3,2 release notes that there was an addition to Include the
sheet name in the output of examples.XLS2CSVmra(POI-DEVELOPERS)
In my custom XLS2CSVmra I was dfoing this. Wanting to keep our code current,
I'd like to incorporrate the 3.2 changes. In my version I had to
processRecord:
if (outputSheetNameNow) {
output.printf("SheetName%d=%s\n",sheetNumber,sheetName.get(sheetNumber).toString());
outputSheetNameNow = false;
}
>From a brief comparison check with the new code I am not sure where and if
the sheetname gets outputed? Ideally I can eliminate my custom version....
Thanks, Tom.