Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to use Apache Lucene for tokenizing, and I am baffled at the process to obtain Tokens from a TokenStream.

The worst part is that I'm looking at the comments in the JavaDocs that address my question.

http://lucene.apache.org/java/3_0_1/api/core/org/apache/lucene/analysis/TokenStream.html#incrementToken%28%29

Somehow, an AttributeSource is supposed to be used, rather than Tokens. I'm totally at a loss.

Can anyone explain how to get token-like information from a TokenStream?

share|improve this question

2 Answers

up vote 59 down vote accepted

Yeah, it's a little convoluted (compared to the good ol' way), but this should do it:

TokenStream tokenStream = analyzer.tokenStream(fieldName, reader);
OffsetAttribute offsetAttribute = tokenStream.getAttribute(OffsetAttribute.class);
TermAttribute termAttribute = tokenStream.getAttribute(TermAttribute.class);

while (tokenStream.incrementToken()) {
    int startOffset = offsetAttribute.startOffset();
    int endOffset = offsetAttribute.endOffset();
    String term = termAttribute.term();
}

Edit: The new way

According to Donotello, TermAttribute has been deprecated in favor of CharTermAttribute. According to jpountz (and Lucene's documentation), addAttribute is more desirable than getAttribute.

TokenStream tokenStream = analyzer.tokenStream(fieldName, reader);
OffsetAttribute offsetAttribute = tokenStream.addAttribute(OffsetAttribute.class);
CharTermAttribute charTermAttribute = tokenStream.addAttribute(CharTermAttribute.class);

while (tokenStream.incrementToken()) {
    int startOffset = offsetAttribute.startOffset();
    int endOffset = offsetAttribute.endOffset();
    String term = charTermAttribute.toString();
}
share|improve this answer
Thanks for this! This API does not seem very intuitive so your example is doubly helpful! +1. – Anthony Mills Jun 4 '10 at 4:15
1  
Now TermAttribute is depricated. As I can see we can use something like CharTermAttributeImpl.toString() instead – Donotello Aug 16 '11 at 9:11
@Donotello: Thank you very much for that! – Adam Paynter Aug 16 '11 at 11:03
1  
You should use addAttribute rather than getAttribute. From lucene javadocs: "It is recommended to always use addAttribute(java.lang.Class) even in consumers of TokenStreams, because you cannot know if a specific TokenStream really uses a specific Attribute" lucene.apache.org/core/old_versioned_docs/versions/3_5_0/api/… – jpountz Apr 11 '12 at 22:29
1  
@jpountz: Thanks for the tip! I have modified the answer accordingly. – Adam Paynter Apr 12 '12 at 8:00

This is how it should be (a clean version of Adam's answer):

TokenStream stream = analyzer.tokenStream(null, new StringReader(text));
CharTermAttribute cattr = stream.addAttribute(CharTermAttribute.class);
while (stream.incrementToken()) {
  System.out.println(cattr.toString());
}
stream.end();
stream.close();
share|improve this answer
2  
Your code did not function properly until I added a stream.reset() before the while loop. I am using Lucene 4.0, so that may be a recent change. Refer to the example near the bottom of this page: lucene.apache.org/core/4_0_0-BETA/core/org/apache/lucene/… – Ben Brunk Jan 9 at 21:29
Thanks, you saved me hours of work and head banging :) – rjurney Feb 18 at 23:50

protected by Bill the Lizard Oct 20 '10 at 12:38

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.