lucene学习--创建索引与搜索

来源:互联网 发布:权力的游戏知乎 编辑:程序博客网 时间:2024/05/16 07:03

首先在E:\TestLucene\workspaceSE路径下,建立文件夹indexdocs和3个txt文件:L1.txt,L2.txt,L3.txt.

L1.txt内容:

111111111111111111111111111111111111111111111111111111111111111111111111111
信息检索就是从信息集合中找出与用户需求相关的信息。
被检索的信息除了文本外,还有图像、音频、视频等多媒体信息,这里我们主要来说说文本信息的检索。
全文检索:把用户的查询请求和全文中的每一词进行比较,不考虑查询请求与文本语义上的匹配,
在信息检索工具中,全文检索是最具通用性和实用性的。(通俗的讲就是匹配关键字的)

数据检索:查询要求和信息系统中的数据都遵循一定的格式,具有一定的结构,
允许对特定的字段检索,其性能与使用有很大的局限性,并且支持语义匹配。

知识检索:强调的是基于知识的、语义的匹配(最复杂的,它就相当于我们知道了搜索问题的答案,
再直接去搜答案的信息)。

全文检索是指计算机索引程序通过扫描文章中的每一个词,对每一个词建立一个索引,
指明该词在文章中出现的次数和位置,当用户查询的时候,检索程序就根据事先建立好的索引进行查找,并将查找的结果反馈给用户的检索方式。

数据检索查询要求和信息系统中的数据都遵循一定的格式,具有一定的结构,允许对特定的字段检索。
例如,数据均按“时间、人物、地点、事件”的形式存储,查询可以为:地点=“北京”。数据检索的性能取决于所使用的标识字段的方法和用户对这种方法的理解,因此具有很大的局限性。

 

L2.txt内容:

 

2222222222222222222222222222222222222222222222222222222222222222222222222
说明:在Internet上采集信息的软件被称为爬虫或蜘蛛或网络机器人(搜索引擎外围的东西),
爬虫在Internet上访问每一个网页,每访问一个网页就把其中的内容传回本地服务器。
信息加工的最主要的任务就是为采集到本地的信息编排索引,为查询做好准备。
分词器的作用:分词器,对文本资源进行切分,将文本按规则切分成一个个进行索引的最小单位(关键词)

 

L3.txt内容:

333333333333333333333333333333333333333333333333333333333333333333333333
中文分词:中文的分词比较复杂,因为不是一个字就是一个词,
而且一个词在另外一个地方可能不是一个词,如在“帽子和服装”中,
“和服”就不是一个词,对于中文分词,通常有三种方式:单字分词、二分法分词、词典分词
单字分词:就是按照中文一个字一个字的分词
二分法分词:按两个字进行切分
词典分词:按某种算法构造词,然后去匹配已建好的词库集合,如果匹配到就切分出来成为词语,

 

准备工作完成了,现在看代码:

File2Document.java

package lucene.study;import java.io.BufferedReader;import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.IOException;import java.io.InputStreamReader;import java.io.UnsupportedEncodingException;import org.apache.lucene.document.Document;import org.apache.lucene.document.Field;import org.apache.lucene.document.Field.Index;import org.apache.lucene.document.Field.Store;/** * @author xudongwang 2012-2-2 *  *         Email:xdwangiflytek@gmail.com */public class File2Document {/** * File--->Document *  * @param filePath *            File路径 *  * @return Document对象 */public static Document file2Document(String filePath) {// 文件要存放:name,content,size,pathFile file = new File(filePath);Document document = new Document();// Store.YES 是否存储 yes no compress(压缩之后再存)// Index 是否进行索引 Index.ANALYZED 分词后进行索引,NOT_ANALYZED 不索引,NOT_ANALYZED// 不分词直接索引document.add(new Field("name", file.getName(), Field.Store.YES,Field.Index.ANALYZED));document.add(new Field("content", readFileContent(file), Field.Store.YES,Field.Index.ANALYZED));document.add(new Field("size", String.valueOf(file.length()),Field.Store.YES, Field.Index.NOT_ANALYZED));// 不分词,但是有时需要索引,文件大小(int)转换成Stringdocument.add(new Field("path", file.getAbsolutePath(), Field.Store.YES,Field.Index.NOT_ANALYZED));// 不需要根据文件的路径来查询return document;}/** * 49. * 读取文件内容 50. * 51. * @param file 52. * File对象 53. * @return File的内容 * 54. */private static String readFileContent(File file) {try {BufferedReader reader = new BufferedReader(new InputStreamReader(new FileInputStream(file)));StringBuffer content = new StringBuffer();try {for (String line = null; (line = reader.readLine()) != null;) {content.append(line).append("\n");}} catch (IOException e) {e.printStackTrace();}//try {//byte temp[]=content.toString().getBytes("UTF-8");//String tt=new String(temp,"gb2312");//System.out.println(tt);//} catch (UnsupportedEncodingException e) {//e.printStackTrace();//}return content.toString();} catch (FileNotFoundException e) {e.printStackTrace();}return null;}/** * <pre> * 获取name属性值的两种方法     * 1.Filed field = document.getFiled("name");     *         field.stringValue();     * 2.document.get("name"); * </pre> *  * @param document */public static void printDocumentInfo(Document document) {// TODO Auto-generated method stubSystem.out.println("索引name -->" + document.get("name"));//System.out.println("content -->" + document.get("content"));System.out.println("索引path -->" + document.get("path"));System.out.println("索引size -->" + document.get("size"));}}


 

FirstLucene.java

 

package lucene.study;import java.io.File;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;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.queryParser.MultiFieldQueryParser;import org.apache.lucene.queryParser.QueryParser;import org.apache.lucene.search.Filter;import org.apache.lucene.search.IndexSearcher;import org.apache.lucene.search.Query;import org.apache.lucene.search.ScoreDoc;import org.apache.lucene.search.TopDocs;import org.apache.lucene.store.Directory;import org.apache.lucene.store.FSDirectory;import org.apache.lucene.store.RAMDirectory;import org.apache.lucene.util.Version;/** * 23. * @author xudongwang 2012-2-2 24. * 25. * Email:xdwangiflytek@gmail.com * 26.E:\TestLucene\workspaceSE\indexdocs  */public class FirstLucene {/** * 源文件路径 */private String filePath01 = "E:\\TestLucene\\workspaceSE\\L1.txt";private String filePath02 = "E:\\TestLucene\\workspaceSE\\L2.txt";private String filePath03 = "E:\\TestLucene\\workspaceSE\\L3.txt";/** * 索引路径 */private String indexPath = "E:\\TestLucene\\workspaceSE\\indexdocs";/** * 分词器,这里我们使用默认的分词器,标准分析器(好几个,但对中文的支持都不好) */private Analyzer analyzer = new StandardAnalyzer(Version.LUCENE_35);private RAMDirectory ramDirectory=null;/** * 创建索引 *  * @throws Exception */public void createIndex() throws Exception {File indexFile = new File(indexPath);Directory directory = FSDirectory.open(indexFile);//写入器配置需要2个参数,版本,分词器。还有其他参数,这里就不再讲了。IndexWriterConfig conf = new IndexWriterConfig(Version.LUCENE_35,analyzer);conf.setOpenMode(OpenMode.CREATE);// IndexWriter索引写入器是用来操作(增、删、改)索引库的IndexWriter indexWriter = new IndexWriter(directory, conf);//需要两个参数,目录,写入器配置// 文档,即要进行索引的单元Document doc01 =File2Document.file2Document(filePath01);Document doc02 =File2Document.file2Document(filePath02);Document doc03 =File2Document.file2Document(filePath03);// 将Document添加到索引库中indexWriter.addDocument(doc01);indexWriter.addDocument(doc02);indexWriter.addDocument(doc03);indexWriter.close();// 关闭写入器,释放资源,索引创建完毕}/** * 创建内存索引 *  * @throws Exception *  */public void createRamIndex() throws Exception {File indexFile = new File(indexPath);Directory directory = FSDirectory.open(indexFile);//内存索引//RAMDirectory ramDirectory = new RAMDirectory();ramDirectory = new RAMDirectory(directory);//这个带参数的构造函数把物理索引加载到内存。//写入器配置需要2个参数,版本,分词器。还有其他参数,这里就不再讲了。IndexWriterConfig ramConf = new IndexWriterConfig(Version.LUCENE_35,analyzer);//ramConf.setOpenMode(OpenMode.CREATE);// IndexWriter索引写入器是用来操作(增、删、改)索引库的IndexWriter ramIndexWriter = new IndexWriter(ramDirectory, ramConf);//需要两个参数,目录,写入器配置// 文档,即要进行索引的单元Document doc01 =File2Document.file2Document(filePath01);Document doc02 =File2Document.file2Document(filePath02);Document doc03 =File2Document.file2Document(filePath03);// 将Document添加到索引库中ramIndexWriter.addDocument(doc01);ramIndexWriter.addDocument(doc02);ramIndexWriter.addDocument(doc03);ramIndexWriter.close();// 关闭写入器,释放资源,索引创建完毕//把内存中的索引与物理的索引合并,起到合并的作用。IndexWriterConfig fsConf = new IndexWriterConfig(Version.LUCENE_35, analyzer);//fsConf.setOpenMode(OpenMode.CREATE_OR_APPEND);IndexWriter fsIndexWriter = new IndexWriter(directory, fsConf);  //把另外几个索引库中的所有索引数据合并到当前的索引库中   fsIndexWriter.addIndexes(ramDirectory);fsIndexWriter.close(); }/** * 搜索 *  * @param queryStr *            搜索的关键词 * @throws Exception */public void search(String queryStr) throws Exception {// 1、把要搜索的文本解析为Query对象// 指定在哪些字段查询String[] fields = { "name", "content" };// QueryParser: 是一个解析用户输入的工具,可以通过扫描用户输入的字符串,生成Query对象。QueryParser queryParser = new MultiFieldQueryParser(Version.LUCENE_35,fields, analyzer);// Query:查询,lucene中支持模糊查询,语义查询,短语查询,组合查询等等,如有TermQuery,BooleanQuery,RangeQuery,WildcardQuery等一些类。Query query = queryParser.parse(queryStr);// 2、进行查询File indexFile = new File(indexPath);// IndexSearcher 是用来在索引库中进行查询的Directory directory = FSDirectory.open(indexFile);IndexReader indexReader = IndexReader.open(directory);IndexSearcher indexSearcher = new IndexSearcher(indexReader);// Filter 过滤器,我们可以将查出来的结果进行过滤,可以屏蔽掉一些不想给用户看到的内容Filter filter = null;// 10000表示一次性在数据库中查询多少个文档// topDocs 类似集合TopDocs topDocs = indexSearcher.search(query, filter, 10000);System.out.println("总共有【" + topDocs.totalHits + "】个文档含有匹配\""+queryStr+"\"的结果");// 注意这里的匹配结果是指文档的个数,而不是文档中包含搜索结果的个数// 3、打印结果for (ScoreDoc scoreDoc : topDocs.scoreDocs) {int docSn = scoreDoc.doc;// 文档内部编号Document document = indexSearcher.doc(docSn);// 根据文档编号取出相应的文档File2Document.printDocumentInfo(document);// 打印出文档信息}}public static void main(String[] args) throws Exception {FirstLucene lucene = new FirstLucene();lucene.createIndex();//创建索引//lucene.createRamIndex();//创建内存索引lucene.search("分词");//搜索你想找的文字System.out.println("---------------------------");lucene.search("检索");System.out.println("---------------------------");lucene.search("索引");System.out.println("---------------------------");}}


 

控制台打印:

总共有【3】个文档含有匹配"分词"的结果索引name -->L3.txt索引path -->E:\TestLucene\workspaceSE\L3.txt索引size -->619索引name -->L2.txt索引path -->E:\TestLucene\workspaceSE\L2.txt索引size -->561索引name -->L1.txt索引path -->E:\TestLucene\workspaceSE\L1.txt索引size -->1636---------------------------总共有【2】个文档含有匹配"检索"的结果索引name -->L1.txt索引path -->E:\TestLucene\workspaceSE\L1.txt索引size -->1636索引name -->L2.txt索引path -->E:\TestLucene\workspaceSE\L2.txt索引size -->561---------------------------总共有【2】个文档含有匹配"索引"的结果索引name -->L2.txt索引path -->E:\TestLucene\workspaceSE\L2.txt索引size -->561索引name -->L1.txt索引path -->E:\TestLucene\workspaceSE\L1.txt索引size -->1636---------------------------


 

 

原创粉丝点击