0

description次のようにdocx4jを使用してドックファイルのタグを変更しています:

DocPropsCorePart docPropsCorePart = wordMLPackage.getDocPropsCorePart();
CoreProperties coreProps = (CoreProperties)docPropsCorePart.getJaxbElement();
JAXBElement<SimpleLiteral> desc = coreProps.getDescription();
SimpleLiteral literal = (SimpleLiteral) XmlUtils.unwrap(desc);
if (literal!=null) {
   List<String> contents = literal.getContent();
   contents.add(0, "Scanned by AFTA. Request Code: ${scanCode}");
}
else {
   //comes here when document has no description tag
}
//save the document

descriptionただし、特定のドキュメントにはタグがありません。これらのドキュメントに説明タグを追加したいと思います。どうすればこれを達成できますか?

4

0 に答える 0