Code for reading oleObject files

I extracted several OleObject files from a Word DOCX document (oleObject1.bin ... etc.). Is there any open source code (primarily in Java) to read this. (I will only be interested in * .net code if it can be easily ported to Java). I am not interested in the rest of the Word document (in this question). There is an Apache project ( http://poi.apache.org/ ) - I would be wondering how well this works

+3
source share
1 answer

Apache POI - POIFS is a Java implementation in the OLE 2 Compound Document format. In my experience, it works very well for the scenario you are talking about. Check this.

+2
source

Source: https://habr.com/ru/post/1733550/


All Articles