Lucene 实战:快速开始 简单查询_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > Lucene 实战:快速开始 简单查询

Lucene 实战:快速开始 简单查询

 2011/10/6 8:12:04  ol_beta  http://softbeta.iteye.com  我要评论(0)
  • 摘要:/****查询**@throwsIOException*@throwsParseException*/@Testpublicvoidsearch()throwsIOException,ParseException{//创建分词器Analyzeranalyzer=newStandardAnalyzer(Version.LUCENE_34);//索引库Directorydir=FSDirectory.open(newFile(indexPath))
  • 标签:
/**
 * 
 * 查询
 * 
 * @throws IOException
 * @throws ParseException
 */
@Test
public void search() throws IOException, ParseException{
	//创建分词器
	Analyzer analyzer = new StandardAnalyzer(Version.LUCENE_34);
	//索引库
	Directory dir = FSDirectory.open(new File(indexPath));
	//IndexSearcher
	IndexSearcher searcher = new IndexSearcher(dir);
	//查询解析
	QueryParser parser = new QueryParser(Version.LUCENE_34, "content", analyzer);
	Query query = parser.parse("WYSIWYG");
	//查询
	TopDocs topDocs = searcher.search(query, 100);
	System.out.println("查询结果:"+topDocs.totalHits+"条记录");
	//打印结果
	for(ScoreDoc doc : topDocs.scoreDocs){
		Document document = searcher.doc(doc.doc);
		System.out.println(document.get("filepath"));
	}
	searcher.close();
}
?

需要注意的是:建立索引的分词器要和查询的分词器是同一个,这个才能保证分词一致。

?

上一篇: java设置环境变量 下一篇: 没有下一篇了!
  • 相关文章
发表评论
用户名: 匿名