我们可以使用Lucene为您的应用程序添加全文搜索功能。
我们将从一些字符串创建一个内存索引。
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对内容进行标记化,而StringField不对其内容进行标记化。
以下代码显示了如何从Java字符串构建查询。
String querystr = "lucene"; Query q = new QueryParser(Version.LATEST, "title", analyzer).parse(querystr);
当进行搜索时,我们首先打开索引,这是一个内存索引。TopScoreDocCollector用于收集前10个评分点击。
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;
以下是显示结果的逻辑。
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.zipJava反射 - Java反射对象创建我们可以使用反射动态创建类的对象。通过调用其中一个构造函数。然后我们可以访问对象的字段的值,...
Java JSON教程 -JSON模式像XML模式一样,JSON数据格式也有Schema,这是一个基于JSON格式的规范。JSON模式也以JSON格式编写。它用...
Java网络教程 -Java异步套接字通道使用以下两个套接字通道类来执行异步套接字操作:java.nio.channels.AsynchronousServerSocket...
JavaFX教程 -JavaFX集合JavaFX中的集合由javafx.collections包定义,javafx.collections包由以下接口和类组成:接口接口描述Obse...