我使用下面的代码进行搜索,但有些方法显示错误;
FSDirectory.open(new File(indexDirectoryPath));
writer = new IndexWriter(indexDirectory,
new StandardAnalyzer(),true,
IndexWriter.MaxFieldLength.UNLIMITED);
在此代码中,open和MaxFieldLength显示错误。我正在使用lucene 6.0.0。
open()方法显示错误
FSDirectory类型中的open(Path)方法不适用 参数(文件)
和MaxFieldLength显示:
MaxFieldLength无法解析或不是字段
我使用了此处提供的代码:
http://www.tutorialspoint.com/lucene/lucene_first_application.htm