Apache Tika is a toolkit for detecting and extracting metadata and structured text content from various documents using existing parser libraries. It is written in Java, but includes a command line version for use from other languages. More information on Tika, the bug tracker, mailing lists, ...
5
votes
1answer
184 views
PDFBox adding white spaces within words
When I try to extract text from my PDF files, it seems to insert white spaces between severl words randomly.
I am using pdfbox-app-1.6.0.jar (latest version) on following sample file in Downloads ...
4
votes
1answer
116 views
Is there a best practice schema.xml for SOLR when importing rich documents?
I'm working with SOLR on a project where we import a bunch (~40k items) of rich documents, mainly MS Word, Powerpoint, Excel and PDFs.
Is there a best practice schema.xml and/or solrconfig.xml to ...
4
votes
1answer
1k views
How to boost a SOLR document when indexing with /solr/update
To index my website, I have a Ruby script that in turn generates a shell script that uploads every file in my document root to Solr. The shell script has many lines that look like this:
curl -s \
...
4
votes
2answers
573 views
How to configure Apache Tika with apache Solr 1.4.1
I want to index a large number of pdf documents i have found a reference that it could be done by apache tika but unfortunately did not found any refernce how could I configure apache tika with solr ...
4
votes
2answers
838 views
Indexing PDF files with Symfony using Lucene
I am a Symfony developer and my web server is Linux. I already use the sfLucene plugin.
What is the simplest way of indexing PDF files for search on a Linux PHP server?
XPDF, installed like this
...
3
votes
2answers
123 views
Searching attachments from a Rails app (Word, PDF, Excel etc)
My first post to Stack Overflow so be gentle please! I am about to start a new Ruby on Rails (3.1) project for a client. One of their requirements is that there is a search engine, which will be ...
3
votes
1answer
222 views
Adding language profile to Apache Tika
Could please anybody who managed to do that explain how to do that :-)
Do I need to get n-gram files for the language I need to add ?
Is it a matter of creating tika.language.override.properties, ...
3
votes
1answer
352 views
Apache Tika and character limit when parsing documents
Could please anybody help me to sort it out?
It can be done like this
Tika tika = new Tika();
tika.setMaxStringLength(10*1024*1024);
But if you don't use Tika directly, like this :
...
3
votes
2answers
204 views
Apache Tika and File access instead of Java Input Stream
I want to be able to create a new Tika parser to extract metadata from a file. We're already using Tika and the metadata extraction will be done consistently.
I think that I've run into this ...
3
votes
2answers
421 views
Is it possible to extract text by page for word/pdf files using Apache Tika?
All the documentation I can find seems to suggest I can only extract the entire file's content. But I need to extract pages individually. Do I need to write my own parser for that? Is there some ...
3
votes
1answer
621 views
Solr's TikaEntityProcessor not working
I'm trying to get Solr to index a database in which one column is a filename of a PDF document I'd like to index. My configuration looks like this:
<dataConfig>
<dataSource name="ds-db" ...
2
votes
1answer
76 views
how can I detect farsi web pages by tika?
I need a sample code to help me detect farsi language web pages by apache tika toolkit.
LanguageIdentifier identifier = new LanguageIdentifier("فارسی");
String language = ...
2
votes
1answer
47 views
ExtractingRequestHandler - how do you post multi-valued literal fields?
I'm trying to post a literal, multi-valued field along with a PDF extract. Only one of the field values seems to be being added to the index. Does this need to be passed in a different way?
Currently ...
2
votes
0answers
123 views
Why is Tika's ForkParser throwing a NoClassDefFoundError when Autodetect parser seems to work fine?
I'm using apache Tika 1.0. Using ForkParser, whenever I parse pdf files, I get the following NoClassDefFoundException:
java.lang.NoClassDefFoundError: ...
2
votes
1answer
54 views
Why is my Tika Metadata object not being populated when using ForkParser?
ForkParser is a new Tika parser that was introduced in Tika version 0.9, located in org.apache.tika.fork. The new parser forks off a new jvm process to analyze the passed file stream. I figured this ...
2
votes
1answer
81 views
Alfresco community 4.0 doesn't recognize DITA files mimetype
So I've installed the Community 4.0.a and extended the mimetype list using mimetype-map.xml as I did before in 3.4
<alfresco-config area="mimetype-map">
<config evaluator="string-compare" ...
2
votes
1answer
132 views
trying to override dependency of Apache Tika 0.9 from PDFBOX 1.4.0 to PDFBOX 1.6.0
<dependency>
<groupId>org.apache.tika</groupId>
<artifactId>tika-parsers</artifactId>
...
2
votes
1answer
96 views
custom xpath expression with tika
I am trying build custom xpath contentHandler for tika that recognizes complex xpath expression,
by using code from org/apache/tika/sax/BodyContentHandler.java (because I am using tika for other ...
2
votes
1answer
85 views
tika returning incorrect line of text for pdf with lots of tables
I am using tika to extract text from a pdf file that has lot of tables.
java -jar tika-app-0.9.jar -t https://s3.amazonaws.com/centraldoc/alg1.pdf
It is returning some invalid text and sometimes it ...
2
votes
3answers
277 views
Extract the text from url using TIKA
Is it possible to extract text from url from tika. Any links will be appreciated. Or TIKA is use only for pdf,word and any other media documents??
2
votes
2answers
171 views
Apache Tika: Parsing a text file omits last part?
I am trying to parse a plain text file using Tika but getting inconsistent
behavior.
More specifically, I have defined a simple handler as follows:
public class MyHandler extends DefaultHandler
{
...
2
votes
1answer
265 views
C/C++ alternative to Apache Tika
I am looking for a C/C++ alternative for Apache Tika framework which is Java based. Specifically, I am searching for file meatadata and structured text extraction all under one framework. After some ...
2
votes
2answers
1k views
how can i use html parser with apache tika in java to extract all html tags?
I download tikacore and tikaparse libraries but I could not find the example codes to parse html codes to string? I have to get rid of all html tag of source of a web page . What can i do? how i can ...
2
votes
1answer
214 views
How to utilize following ECM technologies - comparison
I have a theoretical question. I have tons of documents of various formats (ODS, MS office, pdf, html) and I'd like to implement ECM system that is not a document management system but rather system ...
2
votes
1answer
599 views
Apache Tika and document metadata
I'm doing simple processing of variety of documents (ODS, MS office, pdf) using Apache Tika. I have to get at least :
word count, author, title, timestamps, language etc.
which is not so easy. My ...
2
votes
1answer
394 views
Parse document structure with Java
We need to get tree like structure from a given text document using Java. Used file type should be common and open (rtf, odt, ...). Currently we use Apache Tika to parse plain text from multiple ...
1
vote
0answers
11 views
parsering (using Tika) on remote glassfish
I'm using Tika parser to index my files into Solr. I created my own parser (which extends XMLParser). It uses my own mimetype.
I created a jar file which inside looks like this:
src
|-main
...
1
vote
2answers
53 views
Tika - retrieve main content from docs
GUI utility of Apache Tika provides an option for getting main content ( apart from format text and structured text ) of the given document or the URL. I just want to know which method is responsible ...
1
vote
1answer
35 views
XPath application using tika parser
I want to clean an irregular web content - (may be html, pdf image etc) mostly html. I am using tika parser for that. But I dont know how to apply xpath as I use in html cleaner.
The code I use is,
...
1
vote
1answer
63 views
Sorting Dependency Automatically
I have an external library (say A.jar) which has loads and loads of stuff that I don't want, and a few that I want. The problem is, from my source Files (That I have written using that library, ...
1
vote
3answers
81 views
Nested Jar with java Applet
First of all, I have gone through all the questions here regarding the inclusion of jar files for an applet. But even then, I have this 'Huge' Problem.
I am developing an application with java and ...
1
vote
1answer
124 views
Trying to Parse Binary data… And it's mostly pdf in my case
What's wrong with this code... I am trying to parse pdf files and extract the text from it... But for some pdf I am able to extract the text... And for some it throws the error
Invalid dictionary, ...
1
vote
1answer
461 views
Getting MimeType subtype with Apache tika
I'd need to get the iana.org MediaType rather than application/zip or application/x-tika-msoffice for documents like, odt, ppt, pptx, xlsx etc.
If you look at mimetypes.xml there are mimeType ...
1
vote
0answers
80 views
Solr display page no of PDF along with the results
My question is just a continuation of this activity where I would like to display page no for the searched word in the input document.
Solr open document after searching a keyword
So I use
1) ...
1
vote
1answer
75 views
Solr open document after searching a keyword
I am trying to index some PDF documents and then create a Search UI .
This question is somewhat related to
Solr Index PDF documents and post them to a remote server
1) Indexing PDF Docs - > I use ...
1
vote
0answers
89 views
What is the formatting of Solr CEL/Tika output? And how to fix it?
I am using Solr to index DOC, DOCX and PDF files. I had enabled stored for the text and I checked it out. Here's the result from a sample DOC file:
, a mobile user interface (UI) software ...
1
vote
2answers
309 views
Indexing PDF with Solr
Can anyone point me to a tutorial.
My main experience with Solr is indexing CSV files. But I cannot find any simple instructions/tutorial to tell me what I need to do to index pdfs.
I have seen ...
1
vote
2answers
355 views
Solr Index PDF documents and post them to a remote server
Hi I am a naive user when it come to Solr. Please guide me on the following hurdles.
1) Solr Index PDF documents
Solution tried
I used tika-app 0.9.jar to extract the content from the Input PDF ...
1
vote
2answers
133 views
XML parser + Indexing data
I need to index some xml documents with Lucene, but before that, i need to parse those XML and extract some info inside their tags.
The XML looks like this:
<?xml version="1.0" ...
1
vote
2answers
579 views
Doesn't index or extract the Document (.pdf .doc) from Remotely
I have use Solr 3.1 , Apache Tika 0.9 and Solrnet 0.3.1 to index the
docuent like .doc , .pdf file.
I have successfully index and extract document on locally using this
code
...
1
vote
2answers
993 views
How to get file extension from content type?
I'm using Apache Tika, and I have files (without extension) of particular content type that need to be renamed to have extension that reflect the content type.
Any idea if there is something I could ...
1
vote
1answer
307 views
Extracting text from documents of unknown content type
is there a parser for application/octet-stream type within Apache Tika? I suppose it's a non-parsable stream.
I just need to parse ODS documents, MS documents and PDF files. It seems that new Tika( ...
1
vote
1answer
428 views
Extract text from .tex files using Tika
How do I extract text from a .tex file using Apache Tika? An example file is at http://www.tug.org/texshowcase/EulerGibbsDuhem.tex
Tika is able to correctly detect the content type as ...
1
vote
1answer
266 views
Metadata extraction with Apache Jackrabbit
I was using Alfresco a little bit and there were a thin abstraction layer above Apache Tika for extracting metadata from documents.
I decided to use only Jackrabbit because I don't need such a ...
1
vote
2answers
342 views
finding mime type of wma files using java
I am using apache tika for detecting the mime type of audio and video files. For some reason tika reports the mime type of the wma file (Windows Media Audio format owned by Microsoft) as ...
1
vote
1answer
662 views
Retrieving extracted text with Apache Solr
I'm new to Apache Solr, and I want to use it for indexing pdf files. I managed to get it up and running so far and I can now search for added pdf files.
However, I need to be able to retrieve the ...
1
vote
1answer
594 views
Indexing PDF with page numbers with Solr
I'm indexing PDFs with Solr using the ExtractingRequestHandler. I would like to display the page number along with hits in a document, e.g. "term foo was found in bar.pdf on pages 2, 3 and 5."
Is it ...
1
vote
1answer
222 views
Indexing pdf documents
What the best way to index pdf documents? Should I index them by converting pdf documents to txt or there is a better way to index pdf files?
1
vote
1answer
373 views
Solr ExtractingRequestHandler giving empty content for pdf documents
I am using ExtractingRequestHandler in Solr for getting document content and index it. It works fine for all Microsoft Documents, but for PDFs, the content being extracted is empty. I have also tried ...
0
votes
0answers
37 views
Content extraction from a string using Regex
I have been using Apache Tika to extract contents of a PDF file into a string. However, I need to search for a few patterns in the file.
I believe I may have to use a regular expression to search ...