1

IBM Filenet Content Engine 4.5 で文書のコンテンツを MS-word ファイルから pdf ファイルに更新する Java コードを作成したいと考えています。現時点では変換は必要なく、コンテンツの更新のみが必要です。メタデータ プロパティなどは、Word ファイルから変更されていません。

どうもありがとう

4

1 に答える 1

1

ドキュメントのコード サンプルの使用に問題はありますか?

ドキュメントのコンテンツの設定に基づく:

// 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);
于 2013-11-11T07:20:14.080 に答える