The Apache Tika™ toolkit detects and extracts metadata and structured text content from various documents using existing parser libraries.
0
votes
0answers
8 views
Integrate Apache tika with Apache Lucene 2.1.1
I have installed Apache Lucene 2.1.1 (from lucidworks-2.1.1.zip - lucidworks-enterprise-installer-2.1.1) in my system. It works fine. I would like to integrate it with Apache Tika to extract exif ...
0
votes
0answers
25 views
Error handling using tika-data-config
Am using Apache Solr with Tika integration using dataimporthandler for indexing various files. In this process am not able to understand how to handle errors when processing the files. Am not able to ...
0
votes
0answers
107 views
Java : Microsoft word document to html converter style sheet
As required I am trying to convert doc or docx (Microsoft word) files to html format with Apache tika
I end up with following code which works fine,
But its not adding any style sheet to result ...
0
votes
1answer
25 views
Apache tika, reading parsed body in MailContextHandler
The source code of the MailContentHandler has this:
try {
BodyContentHandler bch = new BodyContentHandler(handler);
parser.parse(is, new EmbeddedContentHandler(bch), submd, ...
0
votes
0answers
121 views
Convert word and excel to html on android
I would like to convert word and excel documents to html to show them in the browser in my android app.
I found apache poi library, but it converts practically only text without object like forms, ...
1
vote
0answers
34 views
Is Apache Tika able to extract foreign languages like Chinese, Japanese?
Is Apache Tika able to extract foreign languages like Chinese, Japanese?
I have the following code:
Detector detector = new DefaultDetector();
Parser parser = new ...
0
votes
0answers
54 views
Apache Tika OSGi bundle fail when doing mvn install
I am trying to install Apache Tika Toolkit on Windows Server 2008 R2. I then go to the folder where Apache Tika is and execute mvn install from the command line. Yet, that produce a failure error ...
0
votes
1answer
118 views
Apache Tika - Incorrect MIME (content type) detection
I'm trying to detect a file content type passed to a web service into the SOAP envelop.
This file can be indicated in two ways :
from its url,
from its contain (base64 compressed data).
At this ...
0
votes
2answers
171 views
How to extract metatags from HTML files and index them in SOLR and TIKA
I am trying to extract the metatags of HTML files and indexing them into solr with tika integration. I am not able to extract those metatags with Tika and not able to display in solr.
My HTML file is ...
0
votes
0answers
236 views
Tika 1.2 PDF parse error - org.apache.pdfbox.cos.COSString cannot be cast to org.apache.pdfbox.cos.COSDictionary
I am using Solr 4.0 and DIH (data import handler) with TikaProcessor for extracting text from PDF files stored in database. When I run indexing it gets failed to parse some PDF files and got the stack ...
0
votes
3answers
233 views
unable to configure Tika1.2 with solr4
I am trying to use TikaEntityProcessor to index the .html file content. Somehow I am not able to get it correctly. I have checked the error log and I got the following error.
SEVERE: Full Import ...
0
votes
1answer
140 views
NoClassDefFoundError errors in Sling logs when uploading docx, xslx, pptx
I am getting the below multiple errors (see below - one per file) when uploading any office 2007 docs (e.g. pptx, docx, xslx) into Sling. I am using Sling 6 stable standalone.
Is anyone else ...
0
votes
0answers
62 views
python detect image in a document
How can I detect images in a document say doc,xls,ppt or pdf ?
I came across with Apache Tika, I am trying command line option. http://tika.apache.org/1.2/gettingstarted.html
I am using Python2.7..
...
0
votes
0answers
120 views
Using Apache Tika to convert Excel to XML
I recently asked for a recommendation on how to use Java to convert an excel file to XMl and Tika came up.
So I brought Tika into my app and I am impressed with how quickly I can extract text from a ...
0
votes
0answers
104 views
Eclipse Juno EE can't detect external Jar
I added an external jar in my eclipse dynamic webproject via Folder -> properties -> build path -> Libraries -> add external jar.
The code is working fine on compile time.
package servlet;
import ...
0
votes
1answer
144 views
Tika: MIME-Type detection of Js, Css
I use Apache Tika to extract text of all kind of files. Now I also want to use it to detect the correct MIME-type of a file.
This works for example for...
PDF-Files (application/pdf)
HTML-Files ...
1
vote
1answer
246 views
Parsing Outlook pst with tika
I am new to Tika and working on parsing outlook files. Using Outlook Extractor I can parse the
*.msg file but not *.pst.
Is it possible to parse pst file with tika? If yes how ?
Thanks
4
votes
1answer
221 views
Customising the search algorithm of Elasticsearch
I originally tried posting a similar post to the elasticsearch mailing list (https://groups.google.com/forum/?fromgroups=#!topic/elasticsearch/BZLFJSEpl78) but didn't get any helpful responses so I ...
0
votes
1answer
84 views
Extract just the names of the files from archive using Apache Tika
I want Tika to output only the names of the files within the archive (if the input file is an archive) and the file content as usual if the input file is not an archive. How can I do that?
0
votes
1answer
180 views
Tika exception error while indexing rich documents rails 3
Well I am just implementing full text search in rich documents using sunspot_cell.
I am using paperclip for attachment.
I have done all the required configurations and include all the *.jar files in ...
2
votes
1answer
71 views
Tika and parsing data with row and col spans
I am searching for this for the past 2 days but its difficult to find. but the problem here is when you search for col spans in google with any word, different and variant documents will show that are ...
4
votes
1answer
643 views
How to use Tika in server mode
On Tika's website it says (concerning tika-app-1.2.jar) it can be used in server mode. Does anyone know how to send documents and receive parsed text from this server once it is running?
1
vote
3answers
177 views
Preventing Tika from using TNEFParser
I'm trying to parse mbox format email messages. However, Tika keeps trying to use the TNEFParser on these message resulting in an error :
2012-08-21 17:44:42,139 FATAL ...
1
vote
1answer
209 views
Tika information extraction
May I know how I can use Tika to extract information such as numbers in a tabular form in a web page? Does Tika have parsers to this end?
Thanks
0
votes
0answers
78 views
Identify Track Changes metada using Tika metadata extraction
I am trying to extract the metadata for a word document containing "track changes" feature in it. How can tika jar help me identify it.
Here is the code snippet
InputStream inputStream = null;
...
0
votes
2answers
910 views
Java heap space error when compiling android project
I am trying to add the following jar file:
tika-app-1.1
Here is the Console output:
[2012-07-06 22:05:03 - iCards] Dx warning: Ignoring InnerClasses attribute for an anonymous inner class
...
0
votes
1answer
559 views
solr search return results but some sentences before&after the text search are required
I am using Apache solar 3.6.0. I have indexed a file with this command
curl ...
1
vote
0answers
215 views
CSS styles and <ul> <li> tags been ignored while parsing using Apache Tika
While I am parsing the PDF or Word document using AutoDetectParser the "li", "ul" tags are converted as "p" tags. I need the exact HTML content what is been there for PDF or Word Document.
I tried in ...