2

How I can read property->details->(title | subject | comments) from *.docx document.

Hlib
  • 2,944
  • 6
  • 29
  • 33

1 Answers1

3

The document metadata is common across .docx, .pptx and .xlsx formats, so any tutorial or example for reading metadata from any of those formats will do you just fine. Apache POI has everything in it you need.

One great example of reading OOXML metadata is POIXMLPropertiesTextExtractor in Apache POI, I'd suggest you read through that code to see how it works.

Gagravarr
  • 47,320
  • 10
  • 111
  • 156