Lucene包含两部分内容:创建索引、检索。
package demo.mytest.lucene; import java.io.IOException; import java.nio.file.FileSystems; import org.apache.lucene.analysis.Analyzer; import org.apache.lucene.analysis.TokenStream; import org.apache.lucene.analysis.standard.StandardAnalyzer; import org.apache.lucene.analysis.tokenattributes.CharTermAttribute; import org.apache.lucene.analysis.tokenattributes.OffsetAttribute; import org.apache.lucene.document.Document; import org.apache.lucene.document.Field; 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.index.IndexWriterConfig.OpenMode; import org.apache.lucene.index.Term; import org.apache.lucene.queryparser.classic.MultiFieldQueryParser; 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.TermQuery; import org.apache.lucene.search.TermRangeQuery; import org.apache.lucene.search.TopDocs; import org.apache.lucene.search.highlight.Encoder; import org.apache.lucene.search.highlight.Formatter; import org.apache.lucene.search.highlight.Fragmenter; import org.apache.lucene.search.highlight.Highlighter; import org.apache.lucene.search.highlight.QueryScorer; import org.apache.lucene.search.highlight.Scorer; import org.apache.lucene.search.highlight.SimpleFragmenter; import org.apache.lucene.search.highlight.SimpleHTMLEncoder; import org.apache.lucene.search.highlight.SimpleHTMLFormatter; import org.apache.lucene.store.Directory; import org.apache.lucene.store.FSDirectory; import org.apache.lucene.store.IOContext; import org.apache.lucene.store.RAMDirectory; import org.apache.lucene.util.BytesRef; import org.junit.Test; import demo.mytest.lucene.utils.LuceneUtils; public class HelloWorld { public static final String dataDir = "F:\\workspace\\luceneDemo\\dataDir\\CHANGES.txt";//文档所在路径 CHANGES.txt public static final String dataDir2 = "F:\\workspace\\luceneDemo\\dataDir\\bye.txt"; public static final String indexDir = "F:\\workspace\\luceneDemo\\indexDir";//索引文件存储位置 public static final Analyzer analyzer = new StandardAnalyzer(); /** * * testCreateIndex 创建索引库 * * @Description * @throws Exception void * @see */ @Test public void testCreateIndex() throws Exception { IndexWriterConfig config = new IndexWriterConfig(analyzer); config.setOpenMode(OpenMode.CREATE);//设置indexWriter的打开方式,是新建或覆盖(CREATE)?是追加(APPEND)?还是两者结合(CREATE_OR_APPEND)? Directory directory = this.getFsIndexDirectory();//将索引文件保存的指定路径 IndexWriter indexWriter = new IndexWriter(directory, config);//创建indexWriter对象 // indexWriter.deleteAll();//删除索引库的所有文件 Document doc = LuceneUtils.file2Document(dataDir);//处理、转换。将文件转换成文档对象 indexWriter.addDocument(doc); Document doc2 = LuceneUtils.file2Document(dataDir2);//处理、转换。将文件转换成文档对象 indexWriter.addDocument(doc2); indexWriter.close();//用完一定要关闭! /* * 新添加一个Document并不会马上将它的索引写入最终的索引大文件,它的索引会暂时存于缓存。 * 当关闭时,会将缓存中的索引归并到索引大文件。如果此处没有关闭操作,那么刚刚添加的Document的索引不会保存到最终的索引大文件。 */ directory.close(); } /** * * testTermQuery 关键词查询 * @throws IOException * * @Description * @see */ @Test public void testTermQuery() throws IOException { String queryStr = "bye.txt"; Term term = new Term("fileName", queryStr); Query query = new TermQuery(term) ; this.queryAndPrintResult(query); } /** * * testTermRangeQuery 范围查询 * * @Description * @throws IOException void * @see */ @Test public void testTermRangeQuery() throws IOException { Query query = new TermRangeQuery("fileSize",new BytesRef(10),new BytesRef(2000), true, true); this.queryAndPrintResult(query); } /** * * queryAndPrintResult 测试查询对象用到的方法 * * @Description * @throws IOException void * @see */ private void queryAndPrintResult(Query query) throws IOException { Directory directory = this.getFsIndexDirectory();//获取索引文件的存储路径 IndexReader indexReader = DirectoryReader.open(directory); IndexSearcher indexSearcher = new IndexSearcher(indexReader);//从指定的路径的索引库检索指定的文本 TopDocs topDocs = indexSearcher.search(query, 100000); ScoreDoc[] scoreDocs = topDocs.scoreDocs; System.out.println("共有【"+ topDocs.totalHits+"】条查询结果。\n----------------"); //打印文档对象信息 for(int i=0;i<scoreDocs.length;i++) { Document document = indexSearcher.doc(scoreDocs[i].doc);//按照文档编号取出相应的文档对象 LuceneUtils.printDocumentInfo(document); } indexReader.close();//用完一定要关闭! directory.close(); } /** * * testSearch 检索 * * @Description * @throws IOException * @throws ParseException void * @see */ @Test public void testSearch() throws IOException, ParseException { String queryStr = "ok";//ok,Ok,OK,oK都能检索到文档中的OK关键字 Directory directory = this.getFsIndexDirectory();//获取索引文件的存储路径 IndexReader indexReader = DirectoryReader.open(directory); IndexSearcher indexSearcher = new IndexSearcher(indexReader);//从指定的路径的索引库检索指定的文本 String[] fields = {"fileName","content"}; QueryParser parser = new MultiFieldQueryParser(fields,analyzer);//在多个文本域中检索的解析器 // QueryParser parser = new QueryParser("content", analyzer);//在content域中检索的解析器 Query query = parser.parse(queryStr);//通过解析器将待检索的字符串转化成Query对象 // System.out.println(",,,,,,,,,,,"+query.); //Filter filter = null; //indexSearcher.search(query, filter, 2000);//5.3.1中已经废止该方法 TopDocs topDocs = indexSearcher.search(query, 100000); ScoreDoc[] scoreDocs = topDocs.scoreDocs; System.out.println("共有【"+ topDocs.totalHits+"】条查询结果。\n----------------"); //打印文档对象信息 for(int i=0;i<scoreDocs.length;i++) { Document document = indexSearcher.doc(scoreDocs[i].doc);//按照文档编号取出相应的文档对象 // document.getField("content"). LuceneUtils.printDocumentInfo(document); } indexReader.close();//用完一定要关闭! directory.close(); } /** * * testHighlighter 将搜索结果中的关键字高亮显示,并生成摘要文本 * @throws Exception * * @Description * @see */ @Test public void testHighlighter() throws Exception { String queryStr = "bye.txt"; Directory directory = this.getFsIndexDirectory();//获取索引文件的存储路径 IndexReader indexReader = DirectoryReader.open(directory); IndexSearcher indexSearcher = new IndexSearcher(indexReader);//从指定的路径的索引库检索指定的文本 String[] fields = {"fileName","content"}; QueryParser parser = new MultiFieldQueryParser(fields,analyzer);//在多个文本域中检索的解析器 Query query = parser.parse(queryStr);//通过解析器将待检索的字符串转化成Query对象 //1.获得查询结果-文档集合 ScoreDoc[] scoreDocs = indexSearcher.search(query, 100000).scoreDocs; //2.高亮处理(构造高亮器+使用高亮器-高亮关键词),并打印文档对象信息 //2.1 构造高亮器 //-------------------- Formatter formatter = new SimpleHTMLFormatter("<font color='red'>","</font>"); Encoder encoder = new SimpleHTMLEncoder(); Scorer fragmentScorer = new QueryScorer(query); Highlighter highlighter = new Highlighter(formatter, encoder, fragmentScorer); //设置高亮器 final int FRAGMENT_SIZE = 50; Fragmenter fragmenter = new SimpleFragmenter(FRAGMENT_SIZE);//每一个fragment的字符长度 highlighter.setTextFragmenter(fragmenter); //-------------------- for(int i=0;i<scoreDocs.length;i++) { Document document = indexSearcher.doc(scoreDocs[i].doc);//按照文档编号取出相应的文档对象 //2.2生成摘要文本,并将摘要中的关键词高亮显示 //-------------------- //抽取与关键词最相近的文本片段作为摘要文本 String text = document.get("content"); String ht = highlighter.getBestFragment(analyzer, "content", text); if(ht == null) {//若fileName域中包含关键词,而content域中没有关键词,ht则为空 //显示文档从头开始的部分文本 ht = text.substring(0, Math.min(text.length(), FRAGMENT_SIZE)); } System.out.println("ht.length()="+ht.length()); //将标记过关键词的信息重新设置到文档对象中 //document.getField("content").setValue(ht);//没有setValue方法 document.removeField("content"); document.add(new Field("content", ht,TextField.TYPE_STORED)); //-------------------- LuceneUtils.printDocumentInfo(document); } indexReader.close();//用完一定要关闭! directory.close(); } /** * * test * @throws IOException * * @Description * 1.当应用启动时,将磁盘中的索引文件读入内存。 * 2.应用运行过程中,只对内存中的索引文件进行操作。保证运行速度 * 3.在应用关闭前,将内存中的索引文件同步到磁盘。保证数据不丢失 * void * @see */ @Test public void test() throws Exception { //1.当应用启动时,将磁盘中的索引文件读入内存。 //获取磁盘上的索引库路径 Directory fsDir = this.getFsIndexDirectory(); //2.应用运行过程中,只对内存中的索引文件进行操作 //创建基于内存的IndexWriter Directory ramDir = new RAMDirectory((FSDirectory)fsDir, new IOContext() );//创建对象的同时,将磁盘上的索引文件加载到内存 IndexWriterConfig ramConfig = new IndexWriterConfig(analyzer); ramConfig.setOpenMode(OpenMode.CREATE); IndexWriter ramIndexWriter = new IndexWriter(ramDir,ramConfig); //应用程序运行过程中,添加Document对象 String tmpDir = "F:\\workspace\\luceneDemo\\dataDir\\CHANGES.txt";//1.txt CHANGES.txt Document doc = LuceneUtils.file2Document(tmpDir);//处理、转换。将文件转换成文档对象 ramIndexWriter.addDocument(doc); ramIndexWriter.close();//操作完毕,一定要关闭!!! //3.在应用关闭前,将内存中的索引文件同步到磁盘。 //创建基于磁盘的IndexWriter IndexWriterConfig fsConfig = new IndexWriterConfig(analyzer); fsConfig.setOpenMode(OpenMode.CREATE_OR_APPEND); IndexWriter fsIndexWriter = new IndexWriter(fsDir,fsConfig); fsIndexWriter.addIndexes(new Directory[] {ramDir}); fsIndexWriter.close();//操作完毕,一定要关闭!!! } /** * * testForceMerge 合并索引文件 * * @Description 优化操作 * @throws Exception void * @see */ @Test public void testForceMerge() throws Exception { Directory fsDir = this.getFsIndexDirectory(); IndexWriterConfig fsConfig = new IndexWriterConfig(analyzer); fsConfig.setOpenMode(OpenMode.CREATE_OR_APPEND); IndexWriter fsIndexWriter = new IndexWriter(fsDir,fsConfig); fsIndexWriter.commit(); fsIndexWriter.forceMerge(2);//forceMerge()内部有flush操作 fsIndexWriter.close();//操作完毕,一定要关闭!!! } /** * * testAnalyzer 分词器的使用 * * @Description 英文有英文分词器,中文有中文分词器。根据语言不同,选择相应的分词器(第三方jar) * @throws IOException void * @see */ @Test public void testAnalyzer() throws IOException { String enText = "This house builds well.She really wants to live in."; String zhText = "这个房子真好,她很想住进来。再见"; Analyzer en1 = new StandardAnalyzer(); // Analyzer zh1 = new SimpleAnalyzer(); this.analyze(en1, enText); System.out.println("--------------------"); this.analyze(en1, zhText); } /** * * analyze 分词 * * @Description * @param analyzer 分词器 * @param text 文本 * @throws IOException void * @see */ private void analyze(Analyzer analyzer, String text) throws IOException { TokenStream tokenStream = analyzer.tokenStream("content", text); //addAttribute():检查AttributeSource是否存在指定类的实例,如果存在,则返回该实例;不存在,则在AttributeSource中添加实例,并返回实例。 OffsetAttribute offsetAtt = tokenStream.addAttribute(OffsetAttribute.class);//OffsetAttribute:token的开始、结束偏移量属性。 //从tokenStream中获取CharTermAttribute CharTermAttribute termAtt = tokenStream.addAttribute(CharTermAttribute.class);//CharTermAttribute:token的词语(term)属性。 try { tokenStream.reset(); //清除状态,已到TokenStream的开始位置。在调用incrementToken()之前一定要调用reset()。 Resets this stream to the beginning. (Required) while(tokenStream.incrementToken()) {//移动到下一个token。已到TokenStream末尾,返回false System.out.println("----------CharTermAttribute----------"); System.out.println("词语:"+termAtt.toString()); System.out.println("----------OffsetAttribute----------"); System.out.println("token: " + tokenStream.reflectAsString(false)); System.out.println("\ttoken开始偏移量: " + offsetAtt.startOffset()); System.out.println("\ttoken结束偏移量: " + offsetAtt.endOffset()); } } catch (Exception e) { e.printStackTrace(); } finally { tokenStream.end();//到达TokenStream末尾后调用end(). Perform end-of-stream operations, e.g. set the final offset. tokenStream.close();//释放与流有关的资源 } } /** * * getFsIndexDirectory 获取索引库的Directory * * @Description * @return Directory * @see */ private Directory getFsIndexDirectory() { try { return FSDirectory.open(FileSystems.getDefault().getPath(indexDir));//基于磁盘的索引库,也可以基于内存:Directory directory = new RAMDirectory(); } catch (IOException e) { throw new RuntimeException(e); } } }
使用到的工具类:
package demo.mytest.lucene.utils; import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import org.apache.lucene.document.Document; import org.apache.lucene.document.Field; import org.apache.lucene.document.TextField; /** * * LuceneUtils 工具类 * */ public class LuceneUtils { /** * * file2Document 将文件转换成文档对象 * * @Description * @param path * @return * @throws Exception Document * @see */ public static Document file2Document(String path) throws Exception { File file = new File(path); Document doc = new Document(); doc.add(new Field("fileName", file.getName(), TextField.TYPE_STORED)); doc.add(new Field("content", getFileContent(file),TextField.TYPE_STORED)); doc.add(new Field("fileSize", String.valueOf(file.getTotalSpace()), TextField.TYPE_STORED)); doc.add(new Field("path", file.getAbsolutePath(),TextField.TYPE_STORED)); //doc.add(new Field("fileName",String.valueOf(file.getName()),Store.YES, Index.ANALYZED)); System.out.println(file.getAbsolutePath()+"\t"+file.isDirectory()+"\n"+getFileContent(file)); doc.add(new Field("isDirectory",String.valueOf(file.isDirectory()),TextField.TYPE_STORED)); return doc; } /** * * printDocumentInfo 打印文档对象信息 * * @Description 打印文档对象信息 * @param document 文档对象 * void * @see */ public static void printDocumentInfo(Document document) { // IndexableField field = document.getField("fileName"); // System.out.println(field.name() + ":" +field.stringValue());//结果---fileName:CHANGES.txt。此处的document.getField("fileName").stringValue()相当于document.get("fileName") //打印文档对象信息 System.out.println("文档("+document.get("fileName")+")的信息-" +"内容:"+document.get("content")+"\t存储位置:"+document.get("path") +"\t文件大小:" + document.get("fileSize") +"\t是否为文件夹:"+ document.get("isDirectory")); } /** * * getFileContent 取得文件内容 * * @Description * @param file * @return * @throws Exception String * @see */ private static String getFileContent(File file) throws Exception { StringBuffer sbf = new StringBuffer(); BufferedReader br = new BufferedReader(new FileReader(file)); String line = null; while ((line = br.readLine()) != null) { sbf.append(line).append("\n"); } br.close(); return sbf.toString(); } }
相关推荐
**Lucene 5.3.1:中文全文检索框架** Lucene 是一款开源的全文检索库,由 Apache 软件基金会开发。它为开发者提供了强大的文本搜索功能,被广泛应用于各种信息检索系统中。在5.3.1版本中,Lucene 提供了对中文文本...
在"Lucene5.3.1相关jar包"中,这些jar文件通常包含了Lucene的核心组件、模块和必要的依赖,以便开发者能够直接在项目中引入并使用Lucene的功能。 中文分词器是Lucene针对中文文本处理的重要组成部分。由于中文句子...
在基于lucene5.3.1的项目实例中,开发者通常会创建一个索引管理类,封装上述操作,以便在应用程序中方便地调用。同时,需要处理异常和并发控制,确保索引操作的稳定性和安全性。 总的来说,理解并熟练运用Lucene ...
该jar包之前只支持Lucene4.7.2,因为我自己的项目用到的是Lucene5.3.1,所以我自己重写了IKAnalyzer.java以及IKTokenizer.java,并且重新编译之后替换了之前的.class文件,现在可以适用于Lucene5.3.1
《深入剖析Lucene 5.3.1:构建全文检索引擎》 Lucene是一个高性能、全文本搜索库,由Apache软件基金会开发并维护。作为Java平台上的一个开源项目,它为开发者提供了强大的文本搜索功能,使得在应用程序中实现复杂的...
《深入理解Lucene 5.3.1:全文检索的核心技术》 Apache Lucene是一个开源的全文检索库,被广泛应用于各种搜索引擎的开发。这里我们聚焦于版本5.3.1,来探讨其在全文检索领域的核心技术和实现原理。 一、Lucene概述...
这个名为"Lucene-Demo.rar"的压缩包提供了一个基于Lucene的分词演示项目,可以帮助开发者快速理解和应用Lucene的分词功能。在这个压缩包中,有两个主要的文件:`lucene`目录和`Lucene-Demo`文件。 `lucene`目录很...
在"lucene_demo"这个压缩包中,很可能包含了一些示例代码或者项目,用于演示如何使用Lucene进行实际的文本搜索开发。这些示例通常会涵盖以下几个关键知识点: 1. **安装与配置**:Lucene的下载、构建环境的搭建,...
"luceneDemo1"和"lucene"可能是两个不同的文件或文件夹,它们可能包含了运行Lucene的示例代码或者已经构建好的索引。"luceneDemo1"可能是一个包含Lucene应用示例的Java项目,包含了必要的类和方法,展示了如何使用...
**标题:“简单的lucene demo”** Lucene是一个强大的全文搜索引擎库,由Apache软件基金会开发并维护,它在Java编程语言中实现,广泛应用于各种搜索应用的构建。这个“简单的lucene demo”旨在向我们展示如何利用...
《LuceneDemo(完整代码):入门到精通的探索》 Lucene,作为Apache软件基金会的一个开源项目,是Java环境中最流行的全文检索库。它提供了一个高性能、可扩展的信息检索服务,广泛应用于搜索引擎开发和大数据分析中...
**Lucene初探:一个初级的LuceneDemo** 在IT领域,搜索引擎技术是不可或缺的一部分,尤其是在大数据时代,高效的信息检索显得尤为重要。Apache Lucene就是这样一款强大的开源全文搜索引擎库,它为开发者提供了构建...
在Lucene 3.0.1中,官方API(应用程序编程接口)是开发者理解和使用Lucene的核心工具。API文档详细地阐述了各种类、方法和接口,帮助开发者构建自己的搜索引擎应用。以下是一些关键的知识点: 1. **索引过程**:...
《整合Lucene 5.3.1与IKAnalyzer 2012_u6:一站式解决方案》 在IT行业中,搜索引擎的构建与文本分析是至关重要的技术环节,而Lucene和IKAnalyzer则是两个不可或缺的工具。这里我们将深入探讨如何将Lucene 5.3.1与IK...
lucene-demo-6.6.0.jar
这个“lucene简单demo”将向我们展示如何使用Lucene进行基本的文本检索操作。 **Lucene核心概念** 1. **索引(Indexing)**: 在Lucene中,索引是将文档内容转换为可供快速搜索的数据结构的过程。它将文本分解成...
在这个“ssh集成Lucene4.7demo”项目中,开发者将SSH框架与Lucene 4.7版本的全文搜索引擎进行了整合,同时还引入了IKAnalyzer作为中文分词器,以支持对中文文本的处理。这个示例项目不仅包含了基本的整合工作,还...
这个“Lucene入门demo”将帮助我们理解如何使用 Lucene 进行基本的索引和搜索操作。 **一、Lucene 的核心概念** 1. **索引(Indexing)**: 在 Lucene 中,索引是文档内容的预处理结果,类似于数据库中的索引。通过...
**Lucene 3.3.0 学习Demo** Lucene是一个开源的全文搜索引擎库,由Apache软件基金会开发。在3.3.0版本中,Lucene提供了强大的文本搜索功能,包括分词、索引创建、查询解析和结果排序等。这个"Lucene3.3.0学习Demo...
本篇文章将围绕“lucene3.5全文检索案例lucene+demo”,详细讲解Lucene 3.5的核心概念、关键功能以及如何通过实例进行操作。 一、Lucene 3.5核心概念 1. 文档(Document):Lucene中的最小处理单元,相当于数据库...