TopScoreDocCollector类型的方法create(int,int)不支持参数(int,boolean)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TopScoreDocCollector类型的方法create(int,int)不支持参数(int,boolean)相关的知识,希望对你有一定的参考价值。
当前,我正在使用Apache Lucene,但在本节中出现错误:
TopScoreDocCollector collector = TopScoreDocCollector.create(hitsPerPage, true);
它说:
“ TopScoreDocCollector类型的方法create(int,int)不支持参数(int,布尔值)”
这是我的完整代码,我从HelloLucene.java中得到了一些修改。
我使用Eclipse和Apache Lucene 8.4.0。我不知道,因为我太困惑了。谢谢。
答案
这仅表示其确切含义。在Apache Lucene 8.4.0中,没有创建方法(int,boolean)作为输入。检查您的API版本:http://lucene.apache.org/core/8_4_0/core/org/apache/lucene/search/TopScoreDocCollector.html
以上是关于TopScoreDocCollector类型的方法create(int,int)不支持参数(int,boolean)的主要内容,如果未能解决你的问题,请参考以下文章