问题描述
我在启动officeManager 时遇到了下一个问题:
一个带有 acceptString 'socket,host=127.0.0.1,port=2002,tcpNoDelay=1;urp;StarOffice.ServiceManager' 的进程已启动,但无法找到其 pid
@Configuration
public class LibreOfficeConfig {
@Value("${libre.office.path}")
private String officeHomeDirectory;
@Bean
public OfficeManager officeManagerConfig() {
return LocalOfficeManager.builder()
.install()
.officeHome(Paths.get(officeHomeDirectory).toFile())
.install()
.build();
}
}
public class LibreOfficeConversionServiceImpl implements DocumentConversionChain {
private void startOfficeManager() {
if (!officeManager.isRunning()) {
try {
officeManager.start();
} catch (OfficeException e) {
throw new RedactionServiceException(e.getMessage(), e);
}
}
}
}
1楼
在我的 win7 开发环境中,我面临着完全相同的异常:“org.jodconverter.office.OfficeException: A process with acceptString 'socket,host=127.0.0.1,port=8100,tcpNoDelay=1;urp;StarOffice.ServiceManager ' 开始,但找不到它的 pid"
我搜索了谷歌,发现的信息很少,但有人说:
jodconverter 配置文件夹不能有中文字母!
我已经尽一切努力重新安装 LibreOffice,预启动它的服务,但都失败了!
最后,我将我的win7默认语言从中文改回英文,从而解决了上面的“pid could not be found”异常!
希望这是有道理的。