Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use Apache Tika on .Net Core?

Tags:

I need to use .Net Core and create a console app that uses .NET bindings for Apache Tika. Do you guys have any idea on how to proceed?

I found a wrapper called 'TikaOnDotNet' but it only seems to work with .Net Framework but not .Net Core. Is there a way to make this work? Thank you for your response in advance.

like image 843
javabeginner Avatar asked Feb 28 '17 21:02

javabeginner


1 Answers

Unfortunately the .NET Core framework doesn't have 100% coverage of other .NET Framework types, so it's not compatible on its own. It would have to be re-written to some extent to work. Fortunately it's open source :)

like image 51
Peter Ritchie Avatar answered Sep 23 '22 11:09

Peter Ritchie