We are working on an application to deal with the clients excel sheet. Now we have a requirment that we will have to manage the sheet version the way google does.
We should be using Java as programming language.
I only found a little bit relevant information about this kind of feature ie https://docs.aspose.com/display/cellsjava/Update+Days+Preserving+History+of+Revision+Logs+in+Shared+Workbook
But I dont think this is what I am looking for.
Also I am trying to use the RevisionLogs class to see what it contains but I am not able to get any method / way to access the contents of rl.
I am using below code
Workbook wb = new Workbook(new FileInputStream(f));
RevisionLogCollection rr = wb.getWorksheets().getRevisionLogs(); RevisionLog rl = rr.get(0); System.out.println(rl);