java.lang.NoClassDefFoundError: com/sun/star/lang/XEventListener

3.3k Views Asked by At

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);
    }
} 
}

Error message I get: enter image description here

Any idea to get rid of this will be appreciated.

1

There are 1 best solutions below

3
On

You need to add openoffice-ridl-2.0.3.jar (or some version of openoffice's jar) to your classpath.