您的位置:首页 > 其它

Lucene3.5 之 索引和搜索简单示例

2012-03-02 13:59 525 查看
import java.io.File;
import java.io.FileReader;
import java.io.IOException;

import org.apache.lucene.analysis.standard.StandardAnalyzer;
import org.apache.lucene.document.Document;
import org.apache.lucene.document.Field;
import org.apache.lucene.index.CorruptIndexException;
import org.apache.lucene.index.IndexReader;
import org.apache.lucene.index.IndexWriter;
import org.apache.lucene.index.IndexWriterConfig;
import org.apache.lucene.queryParser.ParseException;
import org.apache.lucene.queryParser.QueryParser;
import org.apache.lucene.search.IndexSearcher;
import org.apache.lucene.search.Query;
import org.apache.lucene.search.ScoreDoc;
import org.apache.lucene.search.TopDocs;
import org.apache.lucene.store.Directory;
import org.apache.lucene.store.FSDirectory;
import org.apache.lucene.store.LockObtainFailedException;
import org.apache.lucene.util.Version;

public class HelloLucene {

public void index() {
//1.创建Directroy
//创建在内存中
//		Directory directory = new RAMDirectory();

//2.创建IndexWriter
IndexWriterConfig iwc = new IndexWriterConfig(Version.LUCENE_35,new StandardAnalyzer(Version.LUCENE_35));
IndexWriter writer = null;
try {
//创建在硬盘上
Directory directory = FSDirectory.open(new File("C:\\Users\\ETHAN\\workspace\\hellolucene\\index01"));
writer = new IndexWriter(directory, iwc);

//3.创建Document对象
Document doc = null;

//4.为Document添加Field
File f = new File("C:\\Users\\ETHAN\\workspace\\hellolucene\\example");
for(File file:f.listFiles()) {
doc = new Document();
doc.add(new Field("content",new FileReader(file)));
doc.add(new Field("filename",file.getName(),Field.Store.YES,Field.Index.NOT_ANALYZED));
doc.add(new Field("path",file.getAbsolutePath(),Field.Store.YES,Field.Index.NOT_ANALYZED));
//5.通过IndexWriter添加文档到索引中

writer.addDocument(doc);
}
} catch (CorruptIndexException e) {
e.printStackTrace();
} catch (LockObtainFailedException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
if(writer!=null) {
try {
writer.close();
} catch (CorruptIndexException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
}

}

public void searcher() {
//1.创建Directroy
//创建在硬盘上

IndexReader reader  = null;
try {
Directory directory = FSDirectory.open(new File("C:\\Users\\ETHAN\\workspace\\hellolucene\\index01"));
//2.创建IndexReader
reader = IndexReader.open(directory);

//3.根据IndexReader创建IndexSearcher
IndexSearcher searcher = new IndexSearcher(reader);
//4.创建搜索的Query
//创建parser来确定要搜索文件的内容,第二个参数表示要搜索的域
QueryParser parser = new QueryParser(Version.LUCENE_35,"content",new StandardAnalyzer(Version.LUCENE_35));

//创建query,表示搜索域为content中包含java的文档
Query query = parser.parse("java");
//5.根据searcher搜索并返回TopDocs,这里设置返回十条
TopDocs tds = searcher.search(query, 10);

//6.根据TopDocs获取ScoreDoc对象
ScoreDoc[] sds = tds.scoreDocs;
for(ScoreDoc sd:sds) {
//7.根据searcher和ScoredDoc对象获取具体的Document对象
Document d = searcher.doc(sd.doc);
//8.根据Document对象获取需要的值
System.out.println(d.get("filename")+"["+d.get("path")+"]");
}

} catch (IOException e) {
e.printStackTrace();
} catch (ParseException e) {
e.printStackTrace();
} finally {
//关闭reader
try {
if(reader!=null)
reader.close();
} catch (IOException e) {
e.printStackTrace();
}
}

}
}
import org.junit.*;
public class LuceneTest {

@Test
public void testIndex() {
HelloLucene h1 = new HelloLucene();
h1.index();
}

@Test
public void testSearch() {
HelloLucene h1 = new HelloLucene();
h1.searcher();
}
}


搜索显示结果:test1.txt[C:\Users\ETHAN\workspace\hellolucene\example\test1.txt]
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: