初识Lucene-索引与搜索

Lucene首先要建立索引,才能进行搜索,使用了最新的lucene-4.2.1包

1.Indexer.java

/**
 * 索引器
 * @author shishengjie
 *
 */
public class Indexer {
	
	private IndexWriter writer;//写索引,负责创建索引或打开已有索引等等

	public Indexer(String indexDir) throws IOException {
		//Directory描述索引存放的位置
		Directory dir = FSDirectory.open(new File(indexDir));
		//分析器,文本文件在被索引之前需要经过Analyzer处理
		Analyzer luceneAnalyzer = new StandardAnalyzer(Version.LUCENE_42);
		IndexWriterConfig config = new IndexWriterConfig(Version.LUCENE_42,
				luceneAnalyzer);
		writer = new IndexWriter(dir, config);//创建写索引

	}

	public void close() throws IOException {
		writer.close();
	}
	/**
	 * 文件过滤器 过滤所有非.txt文件
	 * @author shishengjie
	 *
	 */
	private static class TextFilesFilter implements FileFilter {

		@Override
		public boolean accept(File pathname) {
			// TODO Auto-generated method stub
			return pathname.getName().toLowerCase().endsWith(".txt");
		}

	}
	/**
	 * 建立索引
	 * @param dataDir
	 * @param filter
	 * @return
	 * @throws IOException
	 */
	public int index(String dataDir, FileFilter filter) throws IOException {
		File files[] = new File(dataDir).listFiles();//索引文件夹下所有文件
		for (File f : files) {
			if (!f.isDirectory() && !f.isHidden() && f.exists() && f.canRead()
					&& (filter == null || filter.accept(f))) {
				indexFile(f);//将文件加入所索引
			}
		}
		return writer.numDocs();
	}

	/**
	 * 向索引中添加文档
	 * @param f
	 * @throws IOException
	 */
	private void indexFile(File f) throws IOException {
		System.out.println("Indexing " + f.getCanonicalPath());
		//根据文件名获取文档,Document代表一些域Filed的集合
		Document doc = getDocument(f);
		//加入到索引中
		writer.addDocument(doc);
	}

	/**
	 * 根据文件返回Document
	 * @param f
	 * @return
	 * @throws IOException
	 */
	private Document getDocument(File f) throws IOException {
		Document doc = new Document();//创建文档
		doc.add(new Field("contents", new FileReader(f)));
		doc.add(new Field("filename", f.getName(), Field.Store.YES,
				Field.Index.NOT_ANALYZED));
		doc.add(new Field("fullpath", f.getCanonicalPath(), Field.Store.YES,
				Field.Index.NOT_ANALYZED));//添加域Filed
		return doc;
	}

	public static void main(String[] args) {
		try {
			if (args.length != 2) {
				throw new IllegalAccessException("Usage:java "
						+ Indexer.class.getName() + " <index dir> <data dir>");
			}

			String indexDir = args[0];	//此处存放索引文件
			String dataDir = args[1];	//对该文件夹下的文件建立索引

			long start = System.currentTimeMillis();
			//创建索引,indexDir为索引存放位置
			Indexer indexer = new Indexer(indexDir);
			int numIndexed;
			try {
				//对dataDir文件夹下的文件建立索引
				numIndexed = indexer.index(dataDir, new TextFilesFilter());
			} finally {
				indexer.close();
			}
			long end = System.currentTimeMillis();
			System.out.println("Indexing " + numIndexed + " files took "
					+ (end - start) + " milliseconds");
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

}

运行时需要输入2个参数,第一个为要存放索引的文件夹,第二个为要索引哪个文件夹下的文件

如:C:\Users\shishengjie\Desktop\lucene\indexDir  C:\Users\shishengjie\Desktop\lucene\lucene-4.2.1\

将会扫描C:\Users\shishengjie\Desktop\lucene\lucene-4.2.1\文件夹下的txt文件,为其建立索引,创建的索引存放在C:\Users\shishengjie\Desktop\lucene\indexDir下面

输出为:

Indexing C:\Users\shishengjie\Desktop\lucene\lucene-4.2.1\CHANGES.txt
Indexing C:\Users\shishengjie\Desktop\lucene\lucene-4.2.1\JRE_VERSION_MIGRATION.txt
Indexing C:\Users\shishengjie\Desktop\lucene\lucene-4.2.1\LICENSE.txt
Indexing C:\Users\shishengjie\Desktop\lucene\lucene-4.2.1\MIGRATE.txt
Indexing C:\Users\shishengjie\Desktop\lucene\lucene-4.2.1\NOTICE.txt
Indexing C:\Users\shishengjie\Desktop\lucene\lucene-4.2.1\README.txt
Indexing C:\Users\shishengjie\Desktop\lucene\lucene-4.2.1\SYSTEM_REQUIREMENTS.txt
Indexing 21 files took 2479 milliseconds


 


2.Searcher.java

/**
 * 查找器
 * @author shishengjie
 *
 */
public class Searcher {

	public static void main(String[] args) throws Exception {

		if (args.length != 2) {
			throw new IllegalAccessException("Usage:java "
					+ Searcher.class.getName() + " <index dir> <data dir>");
		}
		String indexDir = args[0];//索引文件夹
		String q = args[1];//要检索的字符
		search(indexDir, q);//查找
	}

	/**
	 * 查找
	 * @param indexDir
	 * @param q
	 * @throws Exception
	 */
	private static void search(String indexDir, String q) throws Exception {
		//索引存放的位置处创建Directory
		Directory dir = FSDirectory.open(new File(indexDir));
		// 读取索引的indexReader
		IndexReader indexReader = IndexReader.open(dir);
		// 创建indexSearcher,用于搜索由IndexWriter类创建的索引
		IndexSearcher is = new IndexSearcher(indexReader);
		//解析查询字符串
		QueryParser parser = new QueryParser(Version.LUCENE_42, "contents",
				new StandardAnalyzer(Version.LUCENE_42));
		//将人可读的查询解析为Query
		Query query = parser.parse(q);
		long start = System.currentTimeMillis();
		//查询,以TopDocs对象的形式返回搜索结果集
		//TopDocs是一个简单的指针容器,指向前N个排名的搜索结果
		//TopDocs只包括对于文档的引用IndexSearcher.doc时才加载
		TopDocs hits = is.search(query, 10);
		long end = System.currentTimeMillis();
		System.err.println("Found " + hits.totalHits + " document(s) (in "
				+ +(end - start) + " milliseconds) that matched query '" + q
				+ "'");
		//输出匹配的文本
		for (ScoreDoc scoreDoc : hits.scoreDocs) {
			Document doc = is.doc(scoreDoc.doc);//返回匹配文本
			System.out.println(doc.get("fullpath"));
		}

	}

}


运行时需要输入2个参数,第一个为要存放索引的文件夹,第二个为要查询的单词

如:C:\Users\shishengjie\Desktop\lucene\indexDir  patent

将会读取索引,查找patent文件

输出为:

Found 6 document(s) (in 191 milliseconds) that matched query 'java'
C:\Users\shishengjie\Desktop\lucene\lucene-4.2.1\JRE_VERSION_MIGRATION.txt
C:\Users\shishengjie\Desktop\lucene\lucene-4.2.1\SYSTEM_REQUIREMENTS.txt
C:\Users\shishengjie\Desktop\lucene\lucene-4.2.1\README.txt
C:\Users\shishengjie\Desktop\lucene\lucene-4.2.1\NOTICE.txt
C:\Users\shishengjie\Desktop\lucene\lucene-4.2.1\LICENSE.txt
C:\Users\shishengjie\Desktop\lucene\lucene-4.2.1\CHANGES.txt


 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值