#include "stdafx.h" #include "CLucene.h" #include <iostream> using namespace std; using namespace lucene::analysis; using namespace lucene::index; using namespace lucene::util; using namespace lucene::queryParser; using namespace lucene::document; using namespace lucene::search; void SearchFiles(const char* index){ //Searcher searcher(index); standard::StandardAnalyzer analyzer; char line[80]; TCHAR tline[80]; const TCHAR* buf; //第一步利用IndexSearcher打开索引文件用于后面搜索,其中的参数是索引文件的路径. IndexSearcher s(index); while (true) { //输入查询的string printf("Enter query string: "); fgets(line,80,stdin); line[strlen(line)-1]=0; if ( strlen(line) == 0 ) break; STRCPY_AtoT(tline,line,80); //第二步使用QueryParser将可读性较好的查询语句转化为Lucene内部使用的查询对象. Query* q = QueryParser::parse(tline,_T("contents"),&analyzer); buf = q->toString(_T("contents")); _tprintf(_T("Searching for: %s/n/n"), buf); _CLDELETE_CARRAY(buf); uint64_t str = lucene::util::Misc::currentTimeMillis(); //第三步执行搜索.并将结果返回到hits集合.需要注意的是Lucene并不是一次将所有的结果放入hits中而是采取一次放一部分的方式.出于空间考虑. Hits* h = s.search(q); uint64_t srch = lucene::util::Misc::currentTimeMillis() - str;//搜索时间 str = lucene::util::Misc::currentTimeMillis(); //具体操作 for ( int32_t i=0;i<h->length();i++ ){ Document* doc = &h->doc(i); //const TCHAR* buf = doc.get(_T("contents")); _tprintf(_T("%d. %s - %f/n"), i, doc->get(_T("path")), h->score(i)); //delete doc; } printf("/n/nSearch took: %d ms./n", srch); printf("Screen dump took: %d ms./n/n", lucene::util::Misc::currentTimeMillis() - str); _CLDELETE(h); _CLDELETE(q); } s.close(); //delete line; }