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

搜索引擎

开发平台:

Java

  1. package chapter6;
  2. import java.io.IOException;
  3. import org.apache.lucene.index.Term;
  4. import org.apache.lucene.document.Field;
  5. import org.apache.lucene.document.Document;
  6. import org.apache.lucene.index.IndexWriter;
  7. import org.apache.lucene.analysis.Analyzer;
  8. import org.apache.lucene.analysis.SimpleAnalyzer;
  9. import org.apache.lucene.search.Query;
  10. import org.apache.lucene.search.Hits;
  11. import org.apache.lucene.search.TermQuery;
  12. import org.apache.lucene.search.IndexSearcher;
  13. public class LuceneSearchText {
  14. private static String Dest_Index_Path = "D:\workshop\TextIndex";
  15. static protected String[] keywords = {"001","002","003"};
  16. static protected String[] textdetail = {"记录 一","记录 二", "记录 三"} ;
  17. /*================================================================
  18.  * 名 称:QueryIndex
  19.  * 功 能:构造检索查询器,对指定的目录进行查询,找到指定的值,并输出相应结果。
  20.  ===============================================================*/
  21. public static void QueryIndex(){
  22. try {
  23. IndexSearcher searcher = new IndexSearcher(Dest_Index_Path);
  24. Term term = new Term("id","002");
  25. //Term term = new Term("content","记录");
  26. Query query = new TermQuery(term);
  27. System.out.println(query.toString());
  28. Hits hits = searcher.search(query);
  29. System.out.println("Search result:");
  30. for(int i=0; i < hits.length(); i++)
  31. {
  32. System.out.println(hits.doc(i));
  33. System.out.println(hits.doc(i).getField("id"));
  34. }
  35. }catch (IOException e) {
  36. e.printStackTrace();
  37. }
  38. System.out.println("Search success");
  39. }
  40. /*================================================================
  41.  * 名 称:IndexBuilder
  42.  * 功 能:构造磁盘索引,添加内容到指定目录,为后续检索查询做好准备。
  43.  ===============================================================*/
  44. public static void IndexBuilder(){
  45. try {
  46. Analyzer TextAnalyzer = new SimpleAnalyzer();
  47. IndexWriter TextIndex = new IndexWriter(Dest_Index_Path,TextAnalyzer,true);
  48.         TextIndex.setUseCompoundFile(true);
  49. for(int i = 0; i < 3 ; i++){
  50. Document document = new Document();
  51. Field field_id = new Field("id", keywords[i], 
  52. Field.Store.YES,Field.Index.UN_TOKENIZED);
  53. document.add(field_id);
  54. Field field_content = new Field("content", textdetail[i], 
  55. Field.Store.YES,Field.Index.TOKENIZED);
  56. document.add(field_content);
  57. TextIndex.addDocument(document);
  58. }
  59. TextIndex.optimize();
  60. TextIndex.close();
  61. }catch (IOException e) {
  62. e.printStackTrace();
  63. }
  64. System.out.println("Index success");
  65. }
  66. /*================================================================
  67.  * 名 称:main
  68.  * 功 能:测试Lucene索引建立和检索查询功能。
  69.  ===============================================================*/
  70. public static void main(String[] args) {
  71. IndexBuilder();
  72. QueryIndex();
  73. System.out.println("Test success");
  74. }
  75. }