版本:23.8
编程语言:java
源文件:
福来品牌授权书.docx (260.8 KB)
转换后的html:
errorLayout.zip (78.7 KB)
使用的代码:
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
Word2HtmlOptions word2HtmlOptions = new Word2HtmlOptions();
HtmlSaveOptions saveOptions = new HtmlSaveOptions();
saveOptions.setExportImagesAsBase64(true);
saveOptions.setResolveFontNames(true);
word2HtmlOptions.setSaveOptions(saveOptions);
LoadOptions loadOptions =new LoadOptions();
Document doc = new Document(new ByteArrayInputStream(fileBytes), loadOptions);
doc.save(outputStream, saveOptions);