How to create tamper proof Excel document using java? Now i am using Apache POI package for generating Excel documents.
Help Me Bravos ....
How to create tamper proof Excel document using java? Now i am using Apache POI package for generating Excel documents.
Help Me Bravos ....
Setting a password on a sheet, would make your Excel document a little "tamper proof". I haven't tried it (only used POI to read non-protected Excel documents). The HSSFSheet object has a protectSheet() method, start with that:
But I agree with the comment above, that says it is not possible to create a really tamper proof Excel document.
If you just needs to know whether the document has been tampererd with, you could embed a encrypted checksum (MD5).