跨平台的word(doc,docx,rtf)插入图片功能

时间:2016-05-27 09:08:52
【文件属性】:

文件名称:跨平台的word(doc,docx,rtf)插入图片功能

文件大小:12.97MB

文件格式:ZIP

更新时间:2016-05-27 09:08:52

word 插入图片 doc docx rtf

跨平台支持doc,docx,rtf的图片插入,不是生成文档,而是在现有文档上追加后生成新文档。 另外需要安装OpenOffic,并且启动服务,详情见jodconverter的官网。 使用到的技术有iText,poi,jodconverter 使用方法: 1、向doc或者rtf中插入图片 InsertImageFactory iif=new InsertImageFactory(); try { InsertImage ii=iif.getInsertImage(InsertImageFactory.DocVersion); ii.doInsertAction("D:\\text.doc",new String[]{"D:\\a.jpg","D:\\b.jpg"},"D:\\textResult.doc"); } catch (NotHasThisVersionException e) { e.printStackTrace(); } catch (InvalidFilePostfixException e){ e.printStackTrace(); } 2、向docx插入图片 InsertImageFactory iif=new InsertImageFactory(); try { InsertImage ii=iif.getInsertImage(InsertImageFactory.DocxVersion); ii.doInsertAction("D:\\text.docx",new String[]{"D:\\a.jpg","D:\\b.jpg"},"D:\\textResult.docx"); } catch (NotHasThisVersionException e) { e.printStackTrace(); } catch (InvalidFilePostfixException e){ e.printStackTrace(); }


【文件预览】:
slf4j-api-1.5.6.jar
dom4j-1.6.1.jar
poi-ooxml-schemas-3.9-20121203.jar
unoil-3.0.1.jar
iTextAsian.jar
ridl-3.0.1.jar
poi-ooxml-3.9-20121203.jar
itext-rtf-2.1.7.jar
itext-2.1.7.jar
jurt-3.0.1.jar
jodconverter-2.2.2.jar
poi-excelant-3.9-20121203.jar
xmlbeans-2.3.0.jar
poi-3.9-20121203.jar
poi-scratchpad-3.9-20121203.jar
juh-3.0.1.jar
xstream-1.3.1.jar
slf4j-jdk14-1.5.6.jar
commons-io-1.4.jar
wij-wlf-v1.0.jar

网友评论

  • 上传了一堆jar包,也不说明怎么用的,确实没啥用
  • 没啥帮助.不知道你写的是什么代码呀