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

搜索引擎

开发平台:

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. public class SortByField {
  15. static String[] ContentList = { "搜索 引擎","Lucene 使用 方便", "使用 Lucene","Lucene 功能 强大", "Lucene 开放 源码" };
  16. static String[] NumberList = { "No.0", "No.1", "No.2", "No.3", "No.4"};
  17. static String[] OrderList = { "0", "3", "2", "4","1"};
  18. public static void main(String[] args) throws IOException{
  19. searchIndex();
  20. }
  21. // 创建索引并通过Sort改变检索结果排序
  22. private static void searchIndex() throws IOException{   
  23. try{
  24. RAMDirectory ramdirectory = new RAMDirectory(); // 内存目录
  25. IndexWriter writer = new IndexWriter(ramdirectory,new StandardAnalyzer(),true);
  26. for (int i = 0; i < ContentList.length; i++)
  27.     {
  28.         Document document = new Document(); // 创建文档对象
  29.         // 创建域对象
  30.         Field fieldContent = new Field("Content", ContentList[i], Field.Store.YES, Field.Index.TOKENIZED);
  31.         Field fieldNumber  = new Field("Number" , NumberList[i] , Field.Store.YES, Field.Index.TOKENIZED);
  32.         Field fieldOrder   = new Field("Order"  , OrderList[i]  , Field.Store.YES, Field.Index.TOKENIZED);
  33.         document.add(fieldContent);         // 添加创建的文本域到当前文档
  34.         document.add(fieldNumber);         
  35.         document.add(fieldOrder);         
  36.         writer.addDocument(document);       // 完成的文档添加到索引
  37.     }
  38. writer.close();                         // 关闭索引
  39.     IndexSearcher searcher = new IndexSearcher(ramdirectory);               // 创建检索器
  40.     QueryParser parser = new QueryParser("Content",new StandardAnalyzer()); // 创建查询分析器
  41.     Query  query = parser.parse("Lucene");  // 生成查询对象
  42.     Hits rstDoc;
  43.     System.out.println("Lucene默认相关性排序");
  44.     System.out.println("-----------------------------------");     
  45.     rstDoc = searcher.search(query);      // Lucene默认相关性排序
  46.     for (int i = 0; i < rstDoc.length(); i++)  // 遍历获取文档,并读取相关参数
  47.     {
  48.         Document doc = rstDoc.doc(i);
  49.         System.out.println( doc.get("Order")  + " " + doc.get("Number")  + " " + doc.get("Content") + " Boost: " + doc.getBoost() + ", score : " + rstDoc.score(i));
  50.     }
  51.     System.out.println("");
  52.     System.out.println("Sort指定域Number文档排序");
  53.     System.out.println("-----------------------------------");     
  54.     rstDoc = searcher.search(query,new Sort("Number"));  // Sort静态常量INDEXORDER文档序排序
  55.     for (int i = 0; i < rstDoc.length(); i++)   // 遍历获取文档,并读取相关参数
  56.     {
  57.         Document doc = rstDoc.doc(i);
  58.         System.out.println(doc.get("Order")  + " " + doc.get("Number")  + " " + doc.get("Content") + " Boost: " + doc.getBoost() + ", score : " + rstDoc.score(i));
  59.     }
  60.     System.out.println("");
  61.     System.out.println("Sort指定域Order文档排序");
  62.     System.out.println("-----------------------------------");     
  63.     rstDoc = searcher.search(query,new Sort("Order"));   // Sort静态常量INDEXORDER文档序排序
  64.     for (int i = 0; i < rstDoc.length(); i++)   // 遍历获取文档,并读取相关参数
  65.     {
  66.         Document doc = rstDoc.doc(i);
  67.         System.out.println( doc.get("Order")  + " " + doc.get("Number")  + " " + doc.get("Content") + " Boost: " + doc.getBoost() + ", score : " + rstDoc.score(i));
  68.     }     
  69.     searcher.close();
  70. } catch(ParseException e){
  71. System.out.println("ParseException ");
  72. } catch(IOException e){
  73. System.out.println("IOException  ");
  74. }
  75. }
  76. }