posted @ 2014-03-13 15:32 关心 阅读(302) 评论(0) 推荐(0) 编辑
摘要:
利用空闲时间写了一个使用lucene创建索引简单示例,1.使用maven创建的项目2.需要用到的jar如下:废话不多说,直接贴代码如下:1.创建索引的类(HelloLucene):package test.lucene;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;i 阅读全文