1

我需要将 doc 转换为我正在使用 JODConveter (OpenOffice) 的 docx,但不幸的是,我的代码因错误代码 2074 而中断。任何人都可以更深入地了解这个 errorCode 的含义以及我如何修复它。

我的代码在下面共享:

OfficeManager officeManager =
    new DefaultOfficeManagerConfiguration().setOfficeHome(
    new File("C:\\Program Files (x86)\\OpenOffice4")).buildOfficeManager();

officeManager.start(); 

OfficeDocumentConverter converter = new OfficeDocumentConverter(officeManager); 

DocumentFormat docx = converter.getFormatRegistry().getFormatByExtension("docx");
docx.setStoreProperties(DocumentFamily.TEXT,
                        Collections.singletonMap("FilterName",
                                                 "MS Word 2007 XML"));

converter.convert(new File("C:\\localFiles\\abc.doc"),
                  new File("C:\\localFiles\\abc_new.docx"));

officeManager.stop();

但是,如果我将预期文件的扩展名从 docx 更改为 pdf,则上面的代码可以正常工作。

4

1 回答 1

2

正如您显然在 Windows 上一样,有一个更稳定的解决方案也可以为您提供具有更好保真度的转换结果。

您必须安装任何版本的 Office(2007 或更高版本)或从 Microsoft 下载并安装兼容包(如果尚未完成)。然后,您可以使用以下命令轻松地将 .doc 转换为 .docx:

"C:\Program Files\Microsoft Office\Office12\wordconv.exe" -oice -nme <input file> <output file>

其中 <input file> 和 <output file> 需要是完全限定的路径名​​。

该命令可以使用以下命令轻松应用于多个文档for

for %F in (*.doc) do "C:\Program Files\Microsoft Office\Office12\wordconv.exe" -oice -nme "%F" "%Fx"

或者您可以从 Java 调用命令:

Process p = Runtime.getRuntime().exec(
    new String[] {
        "C:\Program Files\Microsoft Office\Office12\wordconv.exe",
        "-oice",
        "-nme",
        "C:\\localFiles\\abc.doc",
        "C:\\localFiles\\abc_new.docx"
    });
int exitVal = p.waitFor();
于 2016-10-19T15:38:55.057 回答