How can I open a password-protected Microsoft word(.doc, .docx) file in Java, assuming that the password is known?
|
You can try it with com4j. http://msdn.microsoft.com/en-us/library/microsoft.office.interop.word.documents.open2000.aspx Since there is a parameter called "PasswordDocument" in the "open"-method, I think it is possible to open a password protected file. Hope this is what you were searching for ;) Edit: I recorded this Macro in Word.
So the open method in com4j should look somethin like this (password is "Hallo"):
|
||||
|
|
|
Use a suitable library. A good starting point is the OpenOffice API |
|||||||||
|
|
In our projects, we use Aspose to manage Office documents, but we do not deal with password-protected documents, but I imagine that this library handles such cases... |
|||
|
|
|
A good starting point would be the Apache POI project which supports Office 97-2003 and OOXML (2007-2010) formats. If you are mainly interested in extracting text from those files, you should also look at the Tika project that has some good code, such as OfficeParser.java You will want to substitute in your known password(s) around line 220 in the parse() method:
-- the default password is set to the mostly useless password "VelvetSweatshop" (!) |
|||||
|