- 浏览: 9231 次
- 性别:
- 来自: 大连
-
最新评论
-
mfkvfn:
liushicheng1 写道Jeestrap是什么?Jees ...
2014学习计划 -
gaodong1984:
liushicheng1 写道Jeestrap是什么?应该是 ...
2014学习计划 -
liushicheng1:
Jeestrap是什么?
2014学习计划
文章列表
2014学习计划
Servlet与web容器方面:
1. Servlet 3.0 学习。
2. Jetty使用与源码分析。
3. 能写出一个简单的web容器。
框架方面:
1. Spring 4框架使用与源码分析。
2. Spring security 3 与 Apache Shiro 框架使用与源码分析。
3. Hibernate 4框架使用。
开发平台Jeestrap构建。
package com.javaeye.tonybo2006.lucene.test;
import java.io.IOException;
import java.util.Date;
import org.apache.lucene.analysis.*;
import org.apache.lucene.index.*;
import org.apache.lucene.queryParser.*;
import org.apache.lucene.search.*;
/**
* @author tonybo2006
*
*/
public class TextFileSea ...
- 2008-11-19 09:07
- 浏览 1419
- 评论(0)
/**
* @author tonybo2006
* @version 2008/11/14
*/
public class TextFileIndexer {
private String dataFilePath = null;
private String indexFilePath = null;
private File dataFile = null;
/**
* @param dataFilePath
*/
public TextFileIndexer(String dataFilePath, String indexFilePath) {
this. ...
- 2008-11-14 14:51
- 浏览 1051
- 评论(0)
Lucene的全文检索可以分为两步:1)建立索引。2)检索索引。
建立索引要用到IndexWriter,Document.Field等Lucene包中的类。建立索引按以下步骤进行。
a.读入需要建立索引的文件流。
b.用指定的语言分析器(Analyzer)构造一个新的写索引器IndexWriter。
c.把读入的文件流放入Field类中。
d.把b做成的Field加入到Document.
e.把做好的文档Document写入索引IndexWriter。
通过上述五步就做好索引了,只不过这是最简单的情况,如果作中文检索的话,就需要自己实现语言分析器。
Inde ...
- 2008-11-12 14:11
- 浏览 896
- 评论(0)
1.Lucene历史及其发展
Lucene是一个高性能、纯Java的开源的全文检索引擎。Lucene几乎适合于任何需要全文检索的应用,尤其是跨平台的应用。
Lucene的作者Doug Cutting是一个资深的全文检索专家,刚开始,Doug Cutting将Lucene发表在自己的主页上,2000年3月将其转移到sourceforge,于2001年10捐献给Apache,作为Jakarta的一个子工程(http://jakarta.apache.org/lucene/)。
2.Lucene下载与安装
Lucene本身只是一个组件,而非一个完整的应用,所以若想让Lucene跑起 ...
- 2008-11-12 13:44
- 浏览 1976
- 评论(0)
转自海纳百川的面试题集锦。
http://zangweiren.iteye.com
- 2008-11-11 16:22
- 浏览 1178
- 评论(0)
在日出差,无聊,pgSQL学习中……
http://www.pgsqldb.org/pgsqldoc-8.1c/ddl-partitioning.html
- 2008-11-11 16:18
- 浏览 821
- 评论(0)