I created a project in eclipse and created a lib directory with all of the jar files from the expanded tar file in it.
I need to convert a set of docx files to PDF's. So I executed the following piece of code I found on one of the forum posts:
File dir = new File( "c:/mydocxfiles");
for ( File f : dir.listFiles() ) {
if ( ! f.getAbsolutePath().endsWith( "docx" ) )
continue;
WordprocessingMLPackage ...