我想编写一个 Java 代码,将文档的内容从 MS-word 文件更新为 IBM Filenet Content Engine 4.5 中的 pdf 文件。目前不需要转换,只需更新内容。元数据属性等与 word 文件保持不变。
非常感谢
我想编写一个 Java 代码,将文档的内容从 MS-word 文件更新为 IBM Filenet Content Engine 4.5 中的 pdf 文件。目前不需要转换,只需更新内容。元数据属性等与 word 文件保持不变。
非常感谢
使用文档中的代码示例有任何问题吗?
基于设置文档的内容:
// references to the document and file you are working with
Document document;
File file;
document.checkout(ReservationType.EXCLUSIVE, null, null, null);
document.save(RefreshMode.REFRESH);
Document reservation = (Document) document.get_Reservation();
ContentTransfer contentTransfer = Factory.ContentTransfer.createInstance();
InputStream inputStream = new FileInputStream(file);
ContentElementList contentList = Factory.ContentTransfer.createList();
contentTransfer.setCaptureSource(inputStream);
contentList.add(contentTransfer);
reservation.set_ContentElements(contentList);
reservation.save(RefreshMode.REFRESH);
reservation.checkin(AutoClassify.DO_NOT_AUTO_CLASSIFY, CheckinType.MAJOR_VERSION);
reservation.save(RefreshMode.REFRESH);