Hi,
You can read your ODS file and access your first sheet with:
File file = new File("template/myfile.ods");
final Sheet sheet = SpreadSheet.createFromFile(file).getSheet(0);
And access the cell with something like:
sheet.getCellAt("A1")
Could it be simplier?
Regards,
Guillaume
Salut, I would like to have an example (or to know the classes and methods to be used) that reads the data from a ODS document. Is it simple ? is it possible with this API ? Thanks for your help.
