Lucene在创立索引后,要进行搜索查询 搜索大概需要5部, 1,读取索引. 2,查询索引. 3,匹配数据. 4,封装匹配结果. 5,获取需要的值. 语言表达能力不好,大概就是分着几部吧. /** * 搜索 */ public void searcher(){ //1,创建Directory Directory directory = null; IndexReader reader = null; try { directory = FSDirectory.open(Paths.get("D:…