I am developing .NET Application using pdfbox to extract metadata, content and attached file from PDF.I was able to extract metadata and content, but stuck while extracting attached/embedded files.
I have a pdf with embedded/attached doc file and want to retrieve that file. I have gone through the java example - http://svn.apache.org/repos/asf/pdfbox/trunk/examples/src/main/java/org/apache/pdfbox/examples/pdmodel/ExtractEmbeddedFiles.java . But while trying to use it in .Net, i got "non generic type 'java.util.Map' cannot be used with type arguments" in the following code snippet
java.util.Map<String, COSObjectable> names = efTree.getNames();
So, i will be grateful if anybody help me to extract the file from pdf.
Thanks in advance.