zoukankan      html  css  js  c++  java
  • Eclipse下初用lucene

    lucene是apache的一个开源项目,一个开放源代码的全文检索引擎工具包。

    1. 首先下载lucene,下载地址来自《lucene实战》第2版(页面加载比较忙,等~)

    http://www.manning.com/hatcher3/

    2. 解压下载的包,打开eclipse,新建工程(命名为lucene),在该工程处点右键,选择properties,

    右键你的那个工程选择最后一个properties-java bulid path再在右面的libraries

    在 Libraries项中导入那两个jar文件(可以通过文件夹搜索到lucene-core,lucene-demos )。

    3. 找到IndexFiles.class,双击打开,如图:

        

      **发现只有 class file editor,看不了代码

         原因:没有导入JAR包

         解决方法:直接点击class file editor界面中 Attach Source,然后选中整个解压的文件夹。

        选择 org.apache.lucene.demo包的indexFiles.java右键选择RUN AS---Open run dialog, 在arguments项填入 lucene解压的目录/src

         

         console上会显示完成信息.同时在E:/lucene下生成Index文件夹。

    4. 再选择SearchFiles.class,运行,有可能需要open run dialog中改一下设置,

     控制台会让你输入要查询的内容,输完回车就可以显示结果了.

    注意重新运行InderFiles.java前要删除E:/lucene下生成的index文件夹

  • 相关阅读:
    plan
    模拟测试6
    codeforces gym100801 Problem J. Journey to the “The World’s Start”
    HDU6333 莫队+组合数学
    codeforces 1167B Lost Numbers
    codeforces 86D,Powerful array 莫队
    codeforces 220B . Little Elephant and Array 莫队+离散化
    SPOJ DQUERY
    poj/OpenJ_Bailian
    codeforces 540E 离散化技巧+线段树/树状数组求逆序对
  • 原文地址:https://www.cnblogs.com/XDJjy/p/4245979.html
Copyright © 2011-2022 走看看