我們可以使用Lucene為您的應(yīng)用程序添加全文搜索功能。
我們將從一些字符串創(chuàng)建一個(gè)內(nèi)存索引。
StandardAnalyzer analyzer = new StandardAnalyzer(Version.LATEST); Directory index = new RAMDirectory(); IndexWriterConfig config = new IndexWriterConfig(Version.LATEST, analyzer); IndexWriter w = new IndexWriter(index, config); addDoc(w, "Lucene in Action", "1"); addDoc(w, "Lucene for Dummies", "2"); addDoc(w, "Java", "3"); addDoc(w, "Oracle", "4"); w.close(); private static void addDoc(IndexWriter w, String title, String isbn) throws IOException { Document doc = new Document(); doc.add(new TextField("title", title, Field.Store.YES)); doc.add(new StringField("isbn", isbn, Field.Store.YES)); w.addDocument(doc); }
TextField對(duì)內(nèi)容進(jìn)行標(biāo)記化,而StringField不對(duì)其內(nèi)容進(jìn)行標(biāo)記化。
以下代碼顯示了如何從Java字符串構(gòu)建查詢。
String querystr = "lucene"; Query q = new QueryParser(Version.LATEST, "title", analyzer).parse(querystr);
當(dāng)進(jìn)行搜索時(shí),我們首先打開索引,這是一個(gè)內(nèi)存索引。TopScoreDocCollector用于收集前10個(gè)評(píng)分點(diǎn)擊。
int hitsPerPage = 10; IndexReader reader = IndexReader.open(index); IndexSearcher searcher = new IndexSearcher(reader); TopScoreDocCollector collector = TopScoreDocCollector.create(hitsPerPage, true); searcher.search(q, collector); ScoreDoc[] hits = collector.topDocs().scoreDocs;
以下是顯示結(jié)果的邏輯。
System.out.println("Found " + hits.length + " hits."); for(int i=0;i<hits.length;++i) { int docId = hits[i].doc; Document d = searcher.doc(docId); System.out.println(d.get("isbn") ); System.out.println(d.get("title") ); }
import org.apache.lucene.analysis.standard.StandardAnalyzer; import org.apache.lucene.document.Document; import org.apache.lucene.document.Field; import org.apache.lucene.document.StringField; import org.apache.lucene.document.TextField; import org.apache.lucene.index.DirectoryReader; import org.apache.lucene.index.IndexReader; import org.apache.lucene.index.IndexWriter; import org.apache.lucene.index.IndexWriterConfig; import org.apache.lucene.queryparser.classic.ParseException; import org.apache.lucene.queryparser.classic.QueryParser; import org.apache.lucene.search.IndexSearcher; import org.apache.lucene.search.Query; import org.apache.lucene.search.ScoreDoc; import org.apache.lucene.search.TopScoreDocCollector; import org.apache.lucene.store.Directory; import org.apache.lucene.store.RAMDirectory; import org.apache.lucene.util.Version; import java.io.IOException; public class Main { @SuppressWarnings("deprecation") public static void main(String[] args) throws IOException, ParseException { StandardAnalyzer analyzer = new StandardAnalyzer(Version.LATEST); Directory index = new RAMDirectory(); IndexWriterConfig config = new IndexWriterConfig(Version.LATEST, analyzer); IndexWriter w = new IndexWriter(index, config); addDoc(w, "Lucene in Action", "1"); addDoc(w, "Lucene for Dummies", "2"); addDoc(w, "Java", "3"); addDoc(w, "Oracle", "4"); w.close(); String querystr = "lucene"; Query q = new QueryParser(Version.LATEST, "title", analyzer).parse(querystr); int hitsPerPage = 10; IndexReader reader = DirectoryReader.open(index); IndexSearcher searcher = new IndexSearcher(reader); TopScoreDocCollector collector = TopScoreDocCollector.create(hitsPerPage, true); searcher.search(q, collector); ScoreDoc[] hits = collector.topDocs().scoreDocs; System.out.println("Found " + hits.length + " hits."); for(int i=0;i<hits.length;++i) { int docId = hits[i].doc; Document d = searcher.doc(docId); System.out.println(d.get("isbn") ); System.out.println(d.get("title") ); } reader.close(); } private static void addDoc(IndexWriter w, String title, String isbn) throws IOException { Document doc = new Document(); doc.add(new TextField("title", title, Field.Store.YES)); doc.add(new StringField("isbn", isbn, Field.Store.YES)); w.addDocument(doc); } }
下載源代碼和庫。
下載 Lucene_HelloWorld.zip
更多建議: