lucene创建索引并搜索mysql数据库

来源:互联网 发布:女童长裤春秋淘宝网 编辑:程序博客网 时间:2024/05/29 11:53
lucene结合数据库步骤


1:写一段传统的JDBC程序,将每条的用户信息从数据库读取出来

2:针对每条用户记录,建立一个lucene document 

Document doc = new Document(); 
并根据你的需要,将用户信息的各个字段对应luncene document中的field 进行添加,如: 
doc.add(new TextField("id", id+"",Field.Store.YES));
然后将该条doc加入到索引中, 如: iwriter.addDocument(doc);
这样就建立了lucene的索引库
3:编写对索引库的搜索程序(看lucene文档),通过对lucene的索引库的查找,你可以快速找到对应记录的值



代码:

jar包:IKAnalyzer2012_FF.jar

   lucene-analyzers-common-4.9.0.jar

   lucene-core-4.9.0.jar

   lucene-queryparser-4.9.0.jar

建议使用jdk1.7



import java.io.File;
import java.io.IOException;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;


import org.apache.lucene.analysis.Analyzer;
import org.apache.lucene.document.Document;
import org.apache.lucene.document.Field;
import org.apache.lucene.document.TextField;
import org.apache.lucene.index.DirectoryReader;
import org.apache.lucene.index.IndexWriter;
import org.apache.lucene.index.IndexWriterConfig;
import org.apache.lucene.index.IndexWriterConfig.OpenMode;
import org.apache.lucene.queryparser.classic.ParseException;
import org.apache.lucene.queryparser.classic.QueryParser;
import org.apache.lucene.search.IndexSearcher;
import org.apache.lucene.search.Query;
import org.apache.lucene.search.ScoreDoc;
import org.apache.lucene.store.Directory;
import org.apache.lucene.store.FSDirectory;
import org.apache.lucene.store.RAMDirectory;
import org.apache.lucene.util.Version;
import org.wltea.analyzer.lucene.IKAnalyzer;






/**
 *
 * Lucene与数据库结合使用
 *
 * @author 
 */
public class LuceneDemo01 {


    private static final String driverClassName="com.mysql.jdbc.Driver";
    private static final String url="jdbc:mysql://127.0.0.1:3306/test?characterEncoding=utf-8";
    private static final String username="root";
    private static final String password="root";


    private static final Version version = Version.LUCENE_4_9;
    private Directory directory = new RAMDirectory();
    private DirectoryReader ireader = null;
    private IndexWriter iwriter = null;
    private IKAnalyzer analyzer;
    //存放索引文件的位置,即索引库
    private String searchDir = "d:\\Test\\Index";
    private static File indexFile = null;   
    private Connection conn;
    /**
     * 读取索引文件
     * @return
     * @throws Exception
     */
    public IndexSearcher getSearcher() throws Exception{
    indexFile = new File(searchDir);
        ireader = DirectoryReader.open(FSDirectory.open(indexFile));
        return new IndexSearcher(ireader);
    }
    /**
     * 获取数据库连接
     * @return
     */
    public Connection getConnection(){
        if(this.conn == null){
            try {
                Class.forName(driverClassName);
                conn = DriverManager.getConnection(url, username, password);
            } catch (Exception e) {
                e.printStackTrace();
            } 
        }
        return conn;
    }
    /**
     * 中文分词工具
     * @return
     */
    private IKAnalyzer getAnalyzer(){
        if(analyzer == null){
            return new IKAnalyzer();
        }else{
            return analyzer;
        }
    }
    /**
     * 创建索引文件
     */
    public void createIndex(){
        Connection conn = getConnection();
        ResultSet rs = null;
        PreparedStatement pstmt = null;
        if(conn == null){
            System.out.println("get the connection error...");
            return ;
        }
        String sql = "select id,name from t_user";
        try {
            pstmt = conn.prepareStatement(sql);
            rs = pstmt.executeQuery();
            /**
             * 获取索引文件位置
             */
            indexFile = new File(searchDir);   
            if(!indexFile.exists()) {     
                indexFile.mkdirs();     
            }  
            /**
             * 设置索引参数
             */
            directory = FSDirectory.open(indexFile);  
            IndexWriterConfig iwConfig =  new IndexWriterConfig(version, getAnalyzer());
            iwConfig.setOpenMode(OpenMode.CREATE_OR_APPEND);
            iwriter = new IndexWriter(directory,iwConfig);
            /*lucene本身不支持更新 
             *  
             * 通过删除索引然后再建立索引来更新 
             */ 
            iwriter.deleteAll();//删除上次的索引文件,重新生成索引
            while(rs.next()){
                int id = rs.getInt("id");
                String name = rs.getString("name");
                Document doc = new Document();
                doc.add(new TextField("id", id+"",Field.Store.YES));
                doc.add(new TextField("name", name+"",Field.Store.YES));
                iwriter.addDocument(doc);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }finally{
            try {
                if(iwriter != null)
                iwriter.close();
                rs.close();
                pstmt.close();
                if(!conn.isClosed()){
                    conn.close();
                }
            } catch (Exception e) {
                e.printStackTrace();
            } 
        }
    }
    /**
     * 查询方法
     * @param field 字段名称
     * @param keyword 字段值
     * @param num 
     * @throws Exception
     */
    public void searchByTerm(String field,String keyword,int num) throws Exception{
         IndexSearcher isearcher = getSearcher();
         Analyzer analyzer =  getAnalyzer();
        //使用QueryParser查询分析器构造Query对象
        QueryParser qp = new QueryParser(version,field,analyzer);
      
        qp.setDefaultOperator(QueryParser.OR_OPERATOR);
        try {
            Query query = qp.parse(keyword);
            ScoreDoc[] hits;


            //注意searcher的几个方法
            hits = isearcher.search(query, null, num).scoreDocs;


            System.out.println("the ids is =");
            for (int i = 0; i < hits.length; i++) {
                Document doc = isearcher.doc(hits[i].doc);
                System.out.print(doc.get("id")+" ");
                System.out.println(doc.get("name")+" ");
            }


        } catch (IOException e) {
            e.printStackTrace();
        } catch (ParseException e) {
            e.printStackTrace();
        }
    }
    /**   
     * 搜索索引   
     */    
    public static void main(String[] args) throws Exception {
        LuceneDemo01 ld = new LuceneDemo01();
        //ld.createIndex();
        ld.searchByTerm("name", "玉", 100);
        
    }
}

1 0
原创粉丝点击