讲解之前,先来分享一些资料

 首先,学习任何一门新的亦或是旧的开源技术,百度其中一二是最简单的办法,先了解其中的大概,思想等等这里就贡献一个讲解很到位的ppt

 这是Lucene4.0的官网文档:http://lucene.apache.org/core/4_0_0/core/overview-summary.html

 最后,提醒学习Lucene的小盆友们,这个开源软件的版本更新不慢,版本之间的编程风格亦是不同,所以如果百度到的帖子,可能这段代码,用了4.0或者3.6就会不好使。

  比如,以前版本的申请IndexWriter时,是这样的:

  1. IndexWriter indexWriter = new IndexWriter(indexDir,luceneAnalyzer, true );

  但是4.0,我们需要配置一个conf,把配置内容放到这个对象中:

  1. IndexWriterConfig config = new IndexWriterConfig(Version.LUCENE_CURRENT, analyzer);
  2. IndexWriter iwriter = new IndexWriter(directory, config);
      

    最后的最后,从官网上面下载下来的文件,已经上传至百度网盘,欢迎下载。

这是其中最常用的五个文件:

  第一个,也是最重要的,Lucene-core-4.0.0.jar,其中包括了常用的文档,索引,搜索,存储等相关核心代码。

  第二个,Lucene-analyzers-common-4.0.0.jar,这里面包含了各种语言的词法分析器,用于对文件内容进行关键字切分,提取。

  第三个,Lucene-highlighter-4.0.0.jar,这个jar包主要用于搜索出的内容高亮显示。

  第四个和第五个,Lucene-queryparser-4.0.0.jar,提供了搜索相关的代码,用于各种搜索,比如模糊搜索,范围搜索,等等。

废话说到这里,下面我们简单的讲解一下什么是全文检索

  

  比如,我们一个文件夹中,或者一个磁盘中有很多的文件,记事本、world、Excel、pdf,我们想根据其中的关键词搜索包含的文件。例如,我们输入Lucene,所有内容含有Lucene的文件就会被检查出来。这就是所谓的全文检索。

  因此,很容易的我们想到,应该建立一个关键字与文件的相关映射,盗用ppt中的一张图,很明白的解释了这种映射如何实现。

 在Lucene中,就是使用这种“倒排索引”的技术,来实现相关映射。

  

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

有了这种映射关系,我们就来看看Lucene的架构设计

  下面是Lucene的资料必出现的一张图,但也是其精髓的概括。

  我们可以看到,Lucene的使用主要体现在两个步骤:

  1 创建索引,通过IndexWriter对不同的文件进行索引的创建,并将其保存在索引相关文件存储的位置中。

  2 通过索引查寻关键字相关文档。

  下面针对官网上面给出的一个例子,进行分析:

  1. 1   Analyzer analyzer = new StandardAnalyzer(Version.LUCENE_CURRENT);
  2. 2
  3. 3 // Store the index in memory:
  4. 4 Directory directory = new RAMDirectory();
  5. 5 // To store an index on disk, use this instead:
  6. 6 //Directory directory = FSDirectory.open("/tmp/testindex");
  7. 7 IndexWriterConfig config = new IndexWriterConfig(Version.LUCENE_CURRENT, analyzer);
  8. 8 IndexWriter iwriter = new IndexWriter(directory, config);
  9. 9 Document doc = new Document();
  10. 10 String text = "This is the text to be indexed.";
  11. 11 doc.add(new Field("fieldname", text, TextField.TYPE_STORED));
  12. 12 iwriter.addDocument(doc);
  13. 13 iwriter.close();
  14. 14
  15. 15 // Now search the index:
  16. 16 DirectoryReader ireader = DirectoryReader.open(directory);
  17. 17 IndexSearcher isearcher = new IndexSearcher(ireader);
  18. 18 // Parse a simple query that searches for "text":
  19. 19 QueryParser parser = new QueryParser(Version.LUCENE_CURRENT, "fieldname", analyzer);
  20. 20 Query query = parser.parse("text");
  21. 21 ScoreDoc[] hits = isearcher.search(query, null, 1000).scoreDocs;
  22. 22 assertEquals(1, hits.length);
  23. 23 // Iterate through the results:
  24. 24 for (int i = 0; i < hits.length; i++) {
  25. 25 Document hitDoc = isearcher.doc(hits[i].doc);
  26. 26 assertEquals("This is the text to be indexed.", hitDoc.get("fieldname"));
  27. 27 }
  28. 28 ireader.close();
  29. 29 directory.close();

索引的创建

  首先,我们需要定义一个词法分析器。

  比如一句话,“我爱我们的中国!”,如何对他拆分,扣掉停顿词“的”,提取关键字“我”“我们”“中国”等等。这就要借助的词法分析器Analyzer来实现。这里面使用的是标准的词法分析器,如果专门针对汉语,还可以搭配paoding,进行使用。

  1. 1 Analyzer analyzer = new StandardAnalyzer(Version.LUCENE_CURRENT);

  参数中的Version.LUCENE_CURRENT,代表使用当前的Lucene版本,本文环境中也可以写成Version.LUCENE_40。

  

  第二步,确定索引文件存储的位置,Lucene提供给我们两种方式:

  1 本地文件存储

  1. Directory directory = FSDirectory.open("/tmp/testindex");

  2 内存存储

  1. Directory directory = new RAMDirectory();

  可以根据自己的需要进行设定。

   

  第三步,创建IndexWriter,进行索引文件的写入。

  1. IndexWriterConfig config = new IndexWriterConfig(Version.LUCENE_CURRENT, analyzer);
  2. IndexWriter iwriter = new IndexWriter(directory, config);

  这里的IndexWriterConfig,据官方文档介绍,是对indexWriter的配置,其中包含了两个参数,第一个是目前的版本,第二个是词法分析器Analyzer。

  

  第四步,内容提取,进行索引的存储。

  1. Document doc = new Document();
  2. String text = "This is the text to be indexed.";
  3. doc.add(new Field("fieldname", text, TextField.TYPE_STORED));
  4. iwriter.addDocument(doc);
  5. iwriter.close();

  第一行,申请了一个document对象,这个类似于数据库中的表中的一行。

  第二行,是我们即将索引的字符串。

  第三行,把字符串存储起来(因为设置了TextField.TYPE_STORED,如果不想存储,可以使用其他参数,详情参考官方文档),并存储“表明”为"fieldname".

  第四行,把doc对象加入到索引创建中。

  第五行,关闭IndexWriter,提交创建内容。

  

  这就是索引创建的过程。

关键字查询:

  第一步,打开存储位置

  1. DirectoryReader ireader = DirectoryReader.open(directory);

  第二步,创建搜索器

  1. IndexSearcher isearcher = new IndexSearcher(ireader);

  第三步,类似SQL,进行关键字查询

  1. QueryParser parser = new QueryParser(Version.LUCENE_CURRENT, "fieldname", analyzer);
  2. Query query = parser.parse("text");
  3. ScoreDoc[] hits = isearcher.search(query, null, 1000).scoreDocs;
  4. assertEquals(1, hits.length);
  5. for (int i = 0; i < hits.length; i++) {
  6. Document hitDoc = isearcher.doc(hits[i].doc);
  7. assertEquals("This is the text to be indexed.",hitDoc.get("fieldname"));
  8. }

  这里,我们创建了一个查询器,并设置其词法分析器,以及查询的“表名“为”fieldname“。查询结果会返回一个集合,类似SQL的ResultSet,我们可以提取其中存储的内容。

  关于各种不同的查询方式,可以参考官方手册,或者推荐的PPT

  第四步,关闭查询器等。

  1. ireader.close();
  2. directory.close();

  最后,博猪自己写了个简单的例子,可以对一个文件夹内的内容进行索引的创建,并根据关键字筛选文件,并读取其中的内容

创建索引:

  

  1. /**
  2. * 创建当前文件目录的索引
  3. * @param path 当前文件目录
  4. * @return 是否成功
  5. */
  6. public static boolean createIndex(String path){
  7. Date date1 = new Date();
  8. List<File> fileList = getFileList(path);
  9. for (File file : fileList) {
  10. content = "";
  11. //获取文件后缀
  12. String type = file.getName().substring(file.getName().lastIndexOf(".")+1);
  13. if("txt".equalsIgnoreCase(type)){
  14.  
  15. content += txt2String(file);
  16.  
  17. }else if("doc".equalsIgnoreCase(type)){
  18.  
  19. content += doc2String(file);
  20.  
  21. }else if("xls".equalsIgnoreCase(type)){
  22.  
  23. content += xls2String(file);
  24.  
  25. }
  26.  
  27. System.out.println("name :"+file.getName());
  28. System.out.println("path :"+file.getPath());
  29. // System.out.println("content :"+content);
  30. System.out.println();
  31.  
  32. try{
  33. analyzer = new StandardAnalyzer(Version.LUCENE_CURRENT);
  34. directory = FSDirectory.open(new File(INDEX_DIR));
  35.  
  36. File indexFile = new File(INDEX_DIR);
  37. if (!indexFile.exists()) {
  38. indexFile.mkdirs();
  39. }
  40. IndexWriterConfig config = new IndexWriterConfig(Version.LUCENE_CURRENT, analyzer);
  41. indexWriter = new IndexWriter(directory, config);
  42.  
  43. Document document = new Document();
  44. document.add(new TextField("filename", file.getName(), Store.YES));
  45. document.add(new TextField("content", content, Store.YES));
  46. document.add(new TextField("path", file.getPath(), Store.YES));
  47. indexWriter.addDocument(document);
  48. indexWriter.commit();
  49. closeWriter();
  50.  
  51. }catch(Exception e){
  52. e.printStackTrace();
  53. }
  54. content = "";
  55. }
  56. Date date2 = new Date();
  57. System.out.println("创建索引-----耗时:" + (date2.getTime() - date1.getTime()) + "ms\n");
  58. return true;
  59. }

进行查询:

  1. /**
  2. * 查找索引,返回符合条件的文件
  3. * @param text 查找的字符串
  4. * @return 符合条件的文件List
  5. */
  6. public static void searchIndex(String text){
  7. Date date1 = new Date();
  8. try{
  9. directory = FSDirectory.open(new File(INDEX_DIR));
  10. analyzer = new StandardAnalyzer(Version.LUCENE_CURRENT);
  11. DirectoryReader ireader = DirectoryReader.open(directory);
  12. IndexSearcher isearcher = new IndexSearcher(ireader);
  13.  
  14. QueryParser parser = new QueryParser(Version.LUCENE_CURRENT, "content", analyzer);
  15. Query query = parser.parse(text);
  16.  
  17. ScoreDoc[] hits = isearcher.search(query, null, 1000).scoreDocs;
  18.  
  19. for (int i = 0; i < hits.length; i++) {
  20. Document hitDoc = isearcher.doc(hits[i].doc);
  21. System.out.println("____________________________");
  22. System.out.println(hitDoc.get("filename"));
  23. System.out.println(hitDoc.get("content"));
  24. System.out.println(hitDoc.get("path"));
  25. System.out.println("____________________________");
  26. }
  27. ireader.close();
  28. directory.close();
  29. }catch(Exception e){
  30. e.printStackTrace();
  31. }
  32. Date date2 = new Date();
  33. System.out.println("查看索引-----耗时:" + (date2.getTime() - date1.getTime()) + "ms\n");
  34. }

全部代码:

 

运行结果:

  所有包含man关键字的文件,都被筛选出来了。

----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

参考资料

JAVA读取文本大全:http://blog.csdn.net/csh624366188/article/details/6785817

Lucene官方文档:http://lucene.apache.org/core/4_0_0/core/overview-summary.html

Apache Lucene初探的更多相关文章

  1. 【手把手教你全文检索】Apache Lucene初探 (zhuan)

    http://www.cnblogs.com/xing901022/p/3933675.html *************************************************** ...

  2. 【手把手教你全文检索】Apache Lucene初探

    PS: 苦学一周全文检索,由原来的搜索小白,到初次涉猎,感觉每门技术都博大精深,其中精髓亦是不可一日而语.那小博猪就简单介绍一下这一周的学习历程,仅供各位程序猿们参考,这其中不涉及任何私密话题,因此也 ...

  3. [转载] Apache Lucene初探

    转载自http://www.cnblogs.com/xing901022/p/3933675.html 讲解之前,先来分享一些资料 首先呢,学习任何一门新的亦或是旧的开源技术,百度其中一二是最简单的办 ...

  4. Apache Lucene学习笔记

    Hadoop概述 Apache lucene: 全球第一个开源的全文检索引擎工具包 完整的查询引擎和搜索引擎 部分文本分析引擎 开发人员在此基础建立完整的全文检索引擎 以下为转载:http://www ...

  5. lucene 初探

    前言: window文件管理右上角, 有个搜索功能, 可以根据文件名进行搜索. 那如果从文件名上判断不出内容, 我岂不是要一个一个的打开文件, 查看文件的内容, 去判断是否是我要的文件? 几个, 十几 ...

  6. Apache Lucene(全文检索引擎)—分词器

    目录 返回目录:http://www.cnblogs.com/hanyinglong/p/5464604.html 本项目Demo已上传GitHub,欢迎大家fork下载学习:https://gith ...

  7. Apache Lucene(全文检索引擎)—搜索

    目录 返回目录:http://www.cnblogs.com/hanyinglong/p/5464604.html 本项目Demo已上传GitHub,欢迎大家fork下载学习:https://gith ...

  8. Apache Lucene(全文检索引擎)—创建索引

    目录 返回目录:http://www.cnblogs.com/hanyinglong/p/5464604.html 本项目Demo已上传GitHub,欢迎大家fork下载学习:https://gith ...

  9. Apache Lucene 4.5 发布,Java 搜索引擎

    Apache Lucene 4.5 发布了,该版本提供基于磁盘的文档值以及改进了过滤器的缓存.Lucene 4.5 的文档请看这里. Lucene 是apache软件基金会一个开放源代码的全文检索引擎 ...

随机推荐

  1. 华为/中兴 3G 语音的调试

    1 microcom -s 9600 /dev/ttyUSB2(/dev/ttyUSB2不能错) 2 AT(看是否有OK输出) 3 AT+CREG?(0,1代表GSM网络注册成功) 4 AT+CSQ? ...

  2. HDOJ 4010 Query on The Trees LCT

    LCT: 分割.合并子树,路径上全部点的点权添加一个值,查询路径上点权的最大值 Query on The Trees Time Limit: 10000/5000 MS (Java/Others)   ...

  3. librtmp将本地FLV文件发布到RTMP流媒体服务器

    没有用到ffmpeg库 可以将本地FLV文件发布到RTMP流媒体服务器 使用librtmp发布RTMP流可以使用两种API:RTMP_SendPacket()和RTMP_Write(). 使用RTMP ...

  4. EasyUI Tree checkbox node

    tree插件允许你创建checkbox tree,如果你点击节点的checkbox,被点击的节点信息得到下和上的继承.例如,点击tomato节点的checkbox,你可以看到vegetables节点现 ...

  5. hadoop杂记-为什么会有Map-reduce v2 (Yarn)

    转自:http://www.cnblogs.com/LeftNotEasy/archive/2012/02/18/why-yarn.html 前言: 有一段时间没有写博客了(发现这是我博客最常见的开头 ...

  6. Linux 串口编程

    今天对应用层串口编程进行了验证.程序来源于以下参考链接,自己进行了一些注释和更改,记录于此. Tony Liu, 2016-6-17, Shenzhen 参考链接 https://www.ibm.co ...

  7. php -- session会话

    PHP Sessions PHP session 变量用于存储关于用户会话(session)的信息,或者更改用户会话(session)的设置.Session 变量存储单一用户的信息,并且对于应用程序中 ...

  8. 关于Java中的HashMap的深浅拷贝的测试与几点思考

    0.前言 工作忙起来后,许久不看算法,竟然DFA敏感词算法都要看好一阵才能理解...真是和三阶魔方还原手法一样,田园将芜,非常可惜啊. 在DFA算法中,第一步是需要理解它的数据结构,在此基础上,涉及到 ...

  9. C++关键字之const(整理!)

     C++ Code  12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 ...

  10. 关于CentOS系统中,文件权限第11位上是一个点的解读

    http://blog.csdn.net/dashuai03091199/article/details/38920833 http://blog.csdn.net/xinlongabc/articl ...