admin管理员组

文章数量:1316023

I am using JODConverter from my web application. Even though it does its job such as converting MS Office files into PDF, the error messages make me worried if I need to do something about it.

            officeManager = LocalOfficeManager.builder()
            .install()
                .officeHome("C:\\libreoffice") // Path to LibreOffice installation
            .portNumbers(8100) // Default port number
                .processTimeout(60_000L * 1) // Kill if process hangs for more than 1 minute
                .taskExecutionTimeout(60_000L * 1) // timeout for each task
                .taskQueueTimeout(60_000L * 1) // wait if all ports are busy                    
                .build();
        
        try {
            officeManager.start();

Below error messages show up when the last line is executed.

ERROR [null] .jodconverter.local.office.VerboseProcess - Entity: line 1: parser error : Document is empty
ERROR [null] .jodconverter.local.office.VerboseProcess - 
ERROR [null] .jodconverter.local.office.VerboseProcess - ^

I have searched again and again but most articles are about not working JODConverter.

In my case, it works fine but just the error messages.

Does anyone have any idea where they are coming from? Or can I just ignore them?

本文标签: