Hi
Thank you for additional information. I
cannot reproduce the problem on my side using the latest version of
Aspose.Words for Java 10.7.0.
You can download the latest version from
here:
http://www.aspose.com/community/files/72/java-components/aspose.words-for-java/category1378.aspx
I use the following code for testing:
Document doc = new Document("C:\\Temp\\AAMD-PS-169674_1+EXAMPLE.doc");
for (int i = 0; i <
doc.getCustomDocumentProperties().getCount(); i++)
{
DocumentProperty prop =
doc.getCustomDocumentProperties().get(i);
if (prop.getName().equals("dm_object_name"))
prop.setValue("Les
Mani Document");
if (prop.getName().equals("dm_release_date"))
prop.setValue("06/05/2009");
if (prop.getName().equals("dm_title"))
prop.setValue("Test Aspose");
}
doc.updateFields();
doc.save("C:\\Temp\\out.doc");
Best regards,