SortByFieldInverse.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 SortByFieldInverse {
  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 = { "4", "1", "3", "2","0"};
  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("");
  44.     System.out.println("Sort指定域Number文档逆序排序");
  45.     System.out.println("-----------------------------------");     
  46.     rstDoc = searcher.search(query,new Sort("Number",true));  // Sort静态常量INDEXORDER文档序排序
  47.     for (int i = 0; i < rstDoc.length(); i++)   // 遍历获取文档,并读取相关参数
  48.     {
  49.         Document doc = rstDoc.doc(i);
  50.         System.out.println(doc.get("Number")  + " " + doc.get("Order")  + " " + doc.get("Content") + " Boost: " + doc.getBoost() + ", score : " + rstDoc.score(i));
  51.     }
  52.     System.out.println("");
  53.     System.out.println("Sort指定域Order文档升序排序");
  54.     System.out.println("-----------------------------------");     
  55.     rstDoc = searcher.search(query,new Sort("Order",false));   // Sort静态常量INDEXORDER文档序排序
  56.     for (int i = 0; i < rstDoc.length(); i++)   // 遍历获取文档,并读取相关参数
  57.     {
  58.         Document doc = rstDoc.doc(i);
  59.         System.out.println( doc.get("Order")  + " " + doc.get("Number")  + " " + doc.get("Content") + " Boost: " + doc.getBoost() + ", score : " + rstDoc.score(i));
  60.     }     
  61.     searcher.close();
  62. } catch(ParseException e){
  63. System.out.println("ParseException ");
  64. } catch(IOException e){
  65. System.out.println("IOException  ");
  66. }
  67. }
  68. }