I am using pdfbox(pdfbox-app-2.0.0-RC3.jar) to convert any
file to .pdf
file. I am also using jodconverter-2.2.1.jar library.
Code I wrote (following this):
import com.artofsolving.jodconverter.openoffice.connection.*;
import com.artofsolving.jodconverter.openoffice.converter.*;
import com.artofsolving.jodconverter.*;
import java.io.File;
public class PdfBox {
public static void main(String[] args) throws Exception{
try {
OpenOfficeConnection con=new SocketOpenOfficeConnection(8100);
con.connect();
File inputFile=new File("x.docx");
File outputFile=new File("x.pdf");
DocumentConverter converter=new OpenOfficeDocumentConverter(con);
converter.convert(inputFile,outputFile);
con.disconnect();
} catch (Exception e) {
System.out.println(e);
}
}
}
Any idea to get rid of this will be appreciated.
You need to add
openoffice-ridl-2.0.3.jar
(or some version of openoffice's jar) to your classpath.