Hi,
I have the following java code:
Document doc = doc = new Document(path);
CustomDocumentProperties cprp = doc.getCustomDocumentProperties();
cprp.add("Test1", "YEP1");
cprp.add("Test2", "YEP2");
cprp.add("Test3", "YEP3");
cprp.add("Test4", "YEP4");
doc.save("xpto.doc");
These properties do not appear in the generated xpto.doc file and the custom properties from the original file are not there either.
Any ideas?
Thanks in advance.
TL