We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable ability to set the properties of the document.
These are stored in the docProps/core.xml, docProps/app.xml, and docProps/custom.xml files.
The properties can be accessed like so:
XWPFDocument doc = new XWPFDocument(); POIXMLProperties props = doc.getProperties();
The text was updated successfully, but these errors were encountered:
This seems to work and there do appear to be set methods for all the properties:
POIXMLProperties props = doc.getProperties(); Optional<java.util.Date> date = Optional.of(new Date()); props.getCoreProperties().setCreated(date);
Sorry, something went wrong.
#140: Correct doc section processing. All tests pass
9e632d1
d2c7b6d
ekimbernow
No branches or pull requests
Enable ability to set the properties of the document.
These are stored in the docProps/core.xml, docProps/app.xml, and docProps/custom.xml files.
The properties can be accessed like so:
The text was updated successfully, but these errors were encountered: