测试代码:
@Test public void testIndexSearch() throws Exception { //1. 创建分词器(对搜索的关键词进行分词使用) //注意: 分词器要和创建索引的时候使用的分词器一模一样 Analyzer analyzer = new StandardAnalyzer(); //2. 创建查询对象, //第一个参数: 默认查询域, 如果查询的关键字中带搜索的域名, 则从指定域中查询, 如果不带域名则从, 默认搜索域中查询 //第二个参数: 使用的分词器 QueryParser queryParser = new QueryParser("name", analyzer); //3. 设置搜索关键词 //华 OR 为 手 机 Query query = queryParser.parse("华为手机"); //4. 创建Directory目录对象, 指定索引库的位置 Directory dir = FSDirectory.open(Paths.get("E:\\dir")); //5. 创建输入流对象 IndexReader indexReader = DirectoryReader.open(dir); //6. 创建搜索对象 IndexSearcher indexSearcher = new IndexSearcher(indexReader); //7. 搜索, 并返回结果 //第二个参数: 是返回多少条数据用于展示, 分页使用 TopDocs topDocs = indexSearcher.search(query, 10); //获取查询到的结果集的总数, 打印 System.out.println("=======count=======" + topDocs.totalHits); //8. 获取结果集 ScoreDoc[] scoreDocs = topDocs.scoreDocs; //9. 遍历结果集 if (scoreDocs != null) { for (ScoreDoc scoreDoc : scoreDocs) { //获取查询到的文档唯一标识, 文档id, 这个id是lucene在创建文档的时候自动分配的 int docID = scoreDoc.doc; //通过文档id, 读取文档 Document doc = indexSearcher.doc(docID); System.out.println("=================================================="); //通过域名, 从文档中获取域值 System.out.println("===id==" + doc.get("id")); System.out.println("===name==" + doc.get("name")); System.out.println("===price==" + doc.get("price")); System.out.println("===image==" + doc.get("image")); System.out.println("===brandName==" + doc.get("brandName")); System.out.println("===categoryName==" + doc.get("categoryName")); } } //10. 关闭流 }
标签:25,get,doc,System,文档,2023.5,println,out From: https://www.cnblogs.com/daitu66/p/17433335.html