使用Lucene(2.4)时候出现了搜索结果为空的现象,求达人们解释一下,是程序写的有问题还是我的理解有问题:
在g:\lucene\source下建立了3个txt文件,名称为1.txt,2.txt,abc.txt
其中文件内容均为:
Spring abc
Hibernate abc
Hello
现贴上部分程序代码
建立索引:
File fileDir = new File("g:\lucene\source"); // 指明要索引文件夹的位置
File indexDir = new File("g:\lucene\index"); // 这里放索引文件的位置
File[] textFiles = fileDir.listFiles();
Analyzer analyzer = new StandardAnalyzer();
IndexWriter indexWriter = new IndexWriter(indexDir, analyzer, true,
IndexWriter.MaxFieldLength.LIMITED);
。。。循环目录下的所有文件
Document document = new Document();
Field fieldTitle = new Field("title", textFiles[i].getName(),
Field.Store.YES, Field.Index.ANALYZED,
Field.TermVector.WITH_POSITIONS_OFFSETS);
Field fieldBody = new Field("content", result, Field.Store.YES,
Field.Index.ANALYZED,
Field.TermVector.WITH_POSITIONS_OFFSETS);
document.add(fieldTitle);
document.add(fieldBody);
indexWriter.addDocument(document);
搜索的代码:
String queryString="abc";
IndexSearcher searcher = new IndexSearcher("G:\lucene\index");
Analyzer analyzer = new StandardAnalyzer();
QueryParser parser = new QueryParser("title", analyzer);//当这里是"conten"的时候搜索结果正确
Query query = parser.parse(queryString);
if (searcher != null) {
TopDocs topDocs = searcher.search(query, 100);
System.out.println(topDocs.totalHits);//返回结果为0
...
...
}
在执行搜索的时候,搜索content 域,内容为abc的时候,没有问题,但我想搜索title域,同样搜索内容也是abc,搜索结果始终为0.可是我的文件中明明有一个叫abc.txt啊?这是为什么?
还有,Query和QueryParser的区别,既然有了那么多的Query类,可以不用QueryParser了啊?
求牛人解答。