aspose file tools
The moose likes Beginning Java and the fly likes Password protected xls/xlsx file in java Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Password protected xls/xlsx file in java" Watch "Password protected xls/xlsx file in java" New topic
Author

Password protected xls/xlsx file in java

Happy S Singh
Ranch Hand

Joined: Nov 14, 2011
Posts: 47
I have created password protected zip file which has xls file with the help of this http://java.sys-con.com/node/1258827.

My question is ,Is there any java api which will create password protected xls file instead of zip file. I want to directly apply password on xls file.Encryption/Decryption is the option but want to prompt when when double clicked on file.
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35232
    
    7
Apache POI can do this.


Android appsImageJ pluginsJava web charts
Happy S Singh
Ranch Hand

Joined: Nov 14, 2011
Posts: 47
thanks.
Junilu Lacar
Bartender

Joined: Feb 26, 2001
Posts: 4115
    
    2

Did you check out the org.apache.poi.poifs.crypt package? There's not much in the JavaDocs but you might look around for examples. Just a thought it would be worth looking into before you dismiss what Ulf said just like that.


Junilu - [How to Ask Questions] [How to Answer Questions] [MiH]
Happy S Singh
Ranch Hand

Joined: Nov 14, 2011
Posts: 47
I got this ,but it only makes sheet read only.


Even I have tried this ,but its not prompting for password.

Did you check out the org.apache.poi.poifs.crypt package?

I didn't got example of .Please share the link of example.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel/download
 
subject: Password protected xls/xlsx file in java
 
Similar Threads
How to password protect a zip file?
How to unzip password protected zip file in java?
Read a passowrd protected zip file
Password protected zip file
How create encrypted/password-protected zip file?