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