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?
本文标签:
版权声明:本文标题:java - JODConverter throws error messages - Entity: line 1: parser error : Document is empty. But it does its job - Stack Overfl 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741994189a2409710.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论