PDDocument document = PDDocument.load("/root/saper.pdf");
PDDocumentInformation metadata = document.getDocumentInformation();
metadata.setKeywords("javakeyword");
document.setDocumentInformation(metadata);But nothing has been written to the file! Suggestions?
