Clean metadata
Remove all recognized metadata properties from a file
Sometimes you may need to just remove all or clean metadata properties without applying any filters. The best way to do this is to use the sanitize method.
This example demonstrates how to remove all detected metadata packages/properties.
- Load a file to clean
- Call the sanitize method
- Check the actual number of removed packages/properties
- Save the changes
basic_usage.CleanMetadata
// Constants.InputPdf is an absolute or relative path to your document. Ex: @"C:\Docs\source.pdf"
try (Metadata metadata = new Metadata(Constants.InputPdf)) {
// Remove detected metadata packages
int affected = metadata.sanitize();
System.out.println(String.format("Properties removed: %s", affected));
metadata.save(Constants.OutputPdf);
}
As a result, we get a sanitized version of the original file.
More resources
Advanced usage topics
To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section.
GitHub examples
You may easily run the code above and see the feature in action in our GitHub examples:
Free online document metadata management App
Along with a full featured Java library we provide simple, but powerful free Apps.
You are welcome to view and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images and more with our free online Free Online Document Metadata Viewing and Editing App.