Article on “Using Java to Crack Office 2007”
There is an article up on InfoQ showing how you can use Java to work with the Open XML formats.
Go ahead and take a look: https://www.infoq.com/articles/cracking-office-2007-with-java
While the title of the article says Office 2007, you all know that Open XML is also supported in older versions of Office, as well as a number of other non-Microsoft applications. So this article can help beyond just Office 2007. J
-Brian
Comments
Anonymous
June 07, 2007
I am definitely a big supporter of Open XML and applaud efforts like this and the Open XML SDK. However, there are cases when clients are stuck with Office 2003 and cannot install the compatibility pack due to their current IT policies. Will there be any help from Microsoft in the terms of an SDK where I can read a binary format programmatically, convert it to the Open XML format and work with it using the SDK and then save it back in the binary format? I know I could do that using the Office COM layer, but I'd like to do this on the server level. Preferrably, I'd like a Microsoft solution rather than a third party solution to ensure that the conversion from binary to Open XML and back is optimal.Anonymous
June 07, 2007
Hi Jeff, We are definitely aware of this scenario, but the only code we currently have for going from doc to docx is Word code which is not built to run on the server. -BrianAnonymous
June 07, 2007
Brian, Thanks for the quick response! If it were at all possible to get the file format converter team(s) to factor that functionality out into a DLL that could be used on the server (for Word, Excel, and PowerPoint), it would lead to a great explosion of usage in the type of projects I work on. The clients have have different versions of Office (2000, XP, 2003, 2007) and some of their IT departments either haven't applied the file format compatibility pack, don't know about it, or won't apply it. Even in the case where the client is allowed to install the compatibility pack, it still puts an undue burden on them to open the OpenXML-based file. I love the formats and have been doing great things with them. Unfortunately, this single issue that is preventing me from making use of them on a large scale. Thanks again for all your posts, technical depth, and transparency on this blog! Jeff