标签: java openoffice.org
我使用openoffice将doc转换为pdf,但有时它不起作用,然后即使我关闭连接文档也被占用了:
try { converter.convert(sourceFile, pdfFile); } catch(Exception e){ return "error"; } finally { connection.disconnect(); }
答案 0 :(得分:0)
您只关闭连接而不是转换器。关闭转换器,它会工作。