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

搜索引擎

开发平台:

Java

  1. package chapter8;
  2. import java.io.IOException;
  3. import org.apache.lucene.document.Field;
  4. import org.apache.lucene.document.Document;
  5. import org.apache.lucene.index.IndexWriter;
  6. import org.apache.lucene.analysis.Analyzer;
  7. import org.apache.lucene.analysis.WhitespaceAnalyzer;
  8. import org.apache.lucene.analysis.TokenStream;
  9. import org.apache.lucene.analysis.Token;
  10. import java.util.*;
  11. import java.io.*;
  12. public class LuceneWhitespaceAnalyzerText {
  13. private static String Dest_Index_Path = "D:\workshop\TextIndex";
  14. static protected String textdetail = "Lucene works very well,it is very useful." ;
  15. public static void main(String[] args) {
  16. try {
  17. Analyzer TextAnalyzer = new WhitespaceAnalyzer();
  18. IndexWriter TextIndex = new IndexWriter(Dest_Index_Path,TextAnalyzer,true);
  19. Document document = new Document();
  20. Field field_content = new Field("content", textdetail, 
  21. Field.Store.YES,Field.Index.TOKENIZED);
  22. document.add(field_content);
  23. TextIndex.addDocument(document);
  24. ArrayList ItemList = new ArrayList();
  25. TokenStream stream = TextAnalyzer.tokenStream("content", new StringReader(textdetail));
  26. while(true)
  27. {
  28. Token item = stream.next();
  29. if(null == item ) break;
  30. System.out.print("{"+item.termText()+"} ");
  31. }
  32. TextIndex.optimize();
  33. TextIndex.close();
  34. } catch (IOException e) {
  35. e.printStackTrace();
  36. }
  37. System.out.println("");
  38. System.out.println("Index success");
  39. }
  40. }