You have to write a class which implements the TermHighlighter Interface for
example like this
public class MyHighlighter implements TermHighlighter {
public String highlightTerm (String term){
return "<font class='highlight'>" + term + "</font>";
}
}
Use this class in your Query after searching :
Document doc = this.ivHits.doc(i);
String doctitle = doc.get(Konstanten.F_TITLE);
doctitle = LuceneTools.highlightTerms(doctitle, new MyHighlighter(),
this.ivQuery, analyzer);
Regards,
Michael
-----Urspr�ngliche Nachricht-----
Von: Harpreet S Walia [mailto:[EMAIL PROTECTED]]
Gesendet: Freitag, 21. Februar 2003 07:37
An: Lucene Users List
Betreff: Using term-highlighter
Hi,
I am trying to use the term-highlighter posted on the contribution page for
lucene. I downloaded the files and made the changes mentioned in the
whitepaper to the classes in the lucene search package.
can anbody please tell me, how to invoke the highligher while searching.
currently i am performing the searches as follows
org.apache.lucene.search.Searcher searcher = new
IndexSearcher(indexPath);
Query query = QueryParser.parse(srchqry,field, new
SimpleAnalyzer());
Hits hits = searcher.search(query);
what changes will be needed in these search steps.
Thanks in advance !
Regards,
Harpreet
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]