私はJODConveter(OpenOffice)を使用しているdocxをdocxに変換する必要がありますが、残念ながら私のコードは2074というエラーコードで破損しています。 errorCodeとはどのように修正できるかを意味します。JODConveterを使用したdocxからdocxへの変換がerrorCodeで失敗する:2074
私のコードは次の共有されます。
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();
をしかし、私は上記のコードは完全に正常に動作してPDFにdocxファイルからの私の予想のファイルの拡張子を変更した場合。
@Brutal_JLはあなたには、いくつかの入力を提供することができますか? –