标签:
Package: org.apache.lucene.document
这个包提供了一些为封装要索引的文档所需要的类,比如Document,Field。这样,每一个文档最终被封装成了一个Document对象。
Package: org.apache.lucene.analysis
这个包主要功能是对文档进行分词,因为文档在建立索引之前必须要进行分词,所以这个包的作用可以看成是为建立索引做准备工作。
Package: org.apache.lucene.index
这个包提供了一些类来协助创建索引以及对创建好的索引进行更新。这里面有两个基础的类:IndexWriter和IndexReader,其中IndexWriter是用来创建索引并添加文档到索引中的,IndexReader是用来删除索引中的文档的。
Package: org.apache.lucene.search
这个包提供了对在建立好的索引上进行搜索所需要的类。比如IndexSearcher和Hits,IndexSearcher定义了在指定的索引上进行搜索的方法,Hits用来保存搜索得到的结果。
五种基本类简介:
package test; import java.io.File; import java.io.FileReader; import java.io.IOException; import java.io.Reader; import org.apache.lucene.analysis.Analyzer; import org.apache.lucene.analysis.standard.StandardAnalyzer; import org.apache.lucene.document.Document; import org.apache.lucene.document.Field.Store; import org.apache.lucene.document.TextField; import org.apache.lucene.index.IndexWriter; import org.apache.lucene.index.IndexWriterConfig; import org.apache.lucene.store.Directory; import org.apache.lucene.store.FSDirectory; import org.apache.lucene.util.Version; /** * 文本文件建立索引 * * @author jing * */ public class TxtFileIndexer { private static final String DATA_DIR = "E:\\luceneData";// 数据存储位置 private static final String INDEX_DIR = "E:\\luceneIndex";// 索引文件位置 private static Directory diskDir;// 索引存储位置 // 加载索引Directory static { try { diskDir = FSDirectory.open(new File(INDEX_DIR)); } catch (IOException e) { e.printStackTrace(); } } public static void main(String[] args) throws IOException { // 数据存储位置 File dataDir = new File(DATA_DIR); // 分词器 Analyzer luceneAnalyzer = new StandardAnalyzer(); File[] dataFiles = dataDir.listFiles(); // 索引 IndexWriter indexWriter = new IndexWriter(diskDir, new IndexWriterConfig(Version.LATEST, luceneAnalyzer)); long startTime = System.currentTimeMillis(); for (File dataFile : dataFiles) { if (dataFile.isFile() && dataFile.getName().endsWith(".txt")) { System.out.println("分词器分词,文件: " + dataFile.getName()); Document document = new Document(); Reader txtReader = new FileReader(dataFile); document.add(new TextField("path", dataFile.getCanonicalPath(), Store.YES)); //读取文件内容 char[] ch = new char[10240]; while( txtReader.read(ch) != -1){ continue; } document.add(new TextField("contents", String.valueOf(ch), Store.YES)); indexWriter.addDocument(document); txtReader.close(); } } indexWriter.close(); long endTime = System.currentTimeMillis(); System.out.println("It takes " + (endTime - startTime) + " milliseconds to create index for the files in directory " + dataDir.getPath()); } }
分词器分词,文件:1-副本(2).txt 分词器分词,文件:1-副本(3).txt 分词器分词,文件:1-副本(4).txt 分词器分词,文件:1-副本(5).txt 分词器分词,文件:1-副本(6).txt 分词器分词,文件:1-副本.txt 分词器分词,文件:1.txt It takes 375 milliseconds to create index for the files in directory E:\luceneData
package test; import java.io.File; import java.io.IOException; import org.apache.lucene.document.Document; import org.apache.lucene.index.DirectoryReader; import org.apache.lucene.index.Term; import org.apache.lucene.search.IndexSearcher; import org.apache.lucene.search.ScoreDoc; import org.apache.lucene.search.TermQuery; import org.apache.lucene.store.Directory; import org.apache.lucene.store.FSDirectory; public class TxtFileSearch { private static final String INDEX_DIR = "E:\\luceneIndex";// 索引文件位置 private static Directory diskDir;// 索引存储位置 // 加载索引Directory static { try { diskDir = FSDirectory.open(new File(INDEX_DIR)); } catch (IOException e) { e.printStackTrace(); } } public static void main(String[] args) throws IOException { IndexSearcher searcher = new IndexSearcher(DirectoryReader.open(diskDir)); Term term = new Term("contents", "searcher"); TermQuery luceneQuery = new TermQuery(term); //Finds the top n hits for query ScoreDoc[] hitsAfter = searcher.search(luceneQuery, 500).scoreDocs; for(ScoreDoc sDoc : hitsAfter){ Document hitDoc = searcher.doc(sDoc.doc); System.out.println(hitDoc.get("path")); } } }
标签:
原文地址:http://www.cnblogs.com/jingLongJun/p/4518234.html