LuceneSortExplain.java
上传用户:cctqzzy
上传日期:2022-03-14
资源大小:12198k
文件大小:3k
源码类别:

搜索引擎

开发平台:

Java

  1. package chapter7;
  2. import java.io.IOException;
  3. import org.apache.lucene.analysis.standard.StandardAnalyzer;
  4. import org.apache.lucene.document.Document;
  5. import org.apache.lucene.document.Field;
  6. import org.apache.lucene.index.IndexWriter;
  7. import org.apache.lucene.queryParser.ParseException;
  8. import org.apache.lucene.queryParser.QueryParser;
  9. import org.apache.lucene.search.Hits;
  10. import org.apache.lucene.search.IndexSearcher;
  11. import org.apache.lucene.search.Query;
  12. import org.apache.lucene.search.Sort;
  13. import org.apache.lucene.store.RAMDirectory;
  14. import org.apache.lucene.search.*;
  15. public class LuceneSortExplain {
  16. static String[] ContentList = { "Lucene 使用 方便", "使用 Lucene","Lucene 功能 强大", "Lucene 开放 源码" };
  17. public static void main(String[] args) throws IOException{
  18. searchIndex();
  19. }
  20. // 创建索引并通过Explain查看结果排序因子
  21. private static void searchIndex() throws IOException{   
  22. try{
  23. RAMDirectory ramdirectory = new RAMDirectory(); 
  24. IndexWriter writer = new IndexWriter(ramdirectory,new StandardAnalyzer(),true);
  25. for (int i = 0; i < ContentList.length; i++)
  26.     {
  27.         Document document = new Document(); 
  28.         Field fieldContent = new Field("Content", ContentList[i], Field.Store.YES, Field.Index.TOKENIZED);
  29.         document.add(fieldContent);         // 添加创建的文本域到当前文档
  30.         writer.addDocument(document);       // 完成的文档添加到索引
  31.     }
  32. writer.close();                         // 关闭索引
  33.     IndexSearcher searcher = new IndexSearcher(ramdirectory);               // 创建检索器
  34.     QueryParser parser = new QueryParser("Content",new StandardAnalyzer()); // 创建查询分析器
  35.     Query  query = parser.parse("Lucene");    // 生成查询对象
  36.     Hits rstDoc;
  37.     System.out.println("Lucene相关性排序Explain输出");
  38.     System.out.println("-----------------------------------");     
  39.     rstDoc = searcher.search(query);      // Lucene默认相关性排序
  40.     for (int i = 0; i < rstDoc.length(); i++)  // 遍历获取文档,并读取相关参数
  41.     {
  42.         Document doc = rstDoc.doc(i);
  43.         int id = rstDoc.id( i );
  44.         System.out.println("检索结果 " + i +": " + doc.get("Content") + " Boost: " + doc.getBoost() + ", score : " + rstDoc.score(i));
  45. Explanation exp = searcher.explain( query, id );
  46. System.out.println( "排序因子 :" + exp.toString() );
  47.         
  48.     }
  49.     searcher.close();
  50. } catch(ParseException e){
  51. System.out.println("ParseException ");
  52. } catch(IOException e){
  53. System.out.println("IOException  ");
  54. }
  55. }
  56. }