`

lucene4.7 (1)全文检索之根据数据库内容创建索引

 
阅读更多
package org.apache.lucene.demo;

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Date;
import java.util.List;
import java.util.Map;

import org.apache.commons.dbutils.DbUtils;
import org.apache.lucene.analysis.cn.ChineseAnalyzer;
import org.apache.lucene.document.Document;
import org.apache.lucene.document.Field;
import org.apache.lucene.document.IntField;
import org.apache.lucene.document.LongField;
import org.apache.lucene.document.StringField;
import org.apache.lucene.document.TextField;
import org.apache.lucene.index.IndexWriter;
import org.apache.lucene.index.IndexWriterConfig;
import org.apache.lucene.index.Term;
import org.apache.lucene.index.IndexWriterConfig.OpenMode;
import org.apache.lucene.store.Directory;
import org.apache.lucene.store.FSDirectory;
import org.apache.lucene.util.Version;
import org.apache.poi.util.IntegerField;

import thtf.ebuilder.website.search.DBIndex;
import thtf.ebuilder.website.services.HTMLServices;

/** Index all text files under a directory.
 * <p>
 * This is a command-line application demonstrating simple Lucene indexing.
 * Run it with no command-line arguments for usage information.
 */
public class IndexFiles {
  
  private IndexFiles() {}

  /** Index all text files under a directory. */
  public static void main(String[] args) {
    String indexPath = DBIndex._$.getIndexFile().toString();
    boolean add = true;
    
    Date start = new Date();
    try {
      Directory dir = FSDirectory.open(new File(indexPath));
      IndexWriterConfig iwc = new IndexWriterConfig(Version.LUCENE_47, DBIndex._$.analyzer);
      if (add) {
        iwc.setOpenMode(OpenMode.CREATE);
      } else {
        iwc.setOpenMode(OpenMode.CREATE_OR_APPEND);
      }
      IndexWriter writer = new IndexWriter(dir, iwc);
      indexDocs(writer);

      // NOTE: if you want to maximize search performance,
      // you can optionally call forceMerge here.  This can be
      // a terribly costly operation, so generally it's only
      // worth it when your index is relatively static (ie
      // you're done adding documents to it):
      //
      // writer.forceMerge(1);

      writer.close();

      Date end = new Date();
      System.out.println(end.getTime() - start.getTime() + " total milliseconds");

    } catch (IOException e) {
      System.out.println(" caught a " + e.getClass() +
       "\n with message: " + e.getMessage());
    }
  }

  /**
   * Indexes the given file using the given writer, or if a directory is given,
   * recurses over files and directories found under the given directory.
   * 
   * NOTE: This method indexes one document per input file.  This is slow.  For good
   * throughput, put multiple documents into your input file(s).  An example of this is
   * in the benchmark module, which can create "line doc" files, one document per line,
   * using the
   * <a href="../../../../../contrib-benchmark/org/apache/lucene/benchmark/byTask/tasks/WriteLineDocTask.html"
   * >WriteLineDocTask</a>.
   *  
   * @param writer Writer to the index where the given file/dir info will be stored
   * @param file The file to index, or the directory to recurse into to find files to index
   * @throws IOException If there is a low-level I/O error
   */
  static void indexDocs(IndexWriter writer)
    throws IOException {
        try {
          // make a new, empty document
          
          List list=new DbUtils().queryToMapList("select info_id,info_title,info_content from up_info limit 500");
          for(int i=0;i<list.size();i++){
        	  Map map=(Map)list.get(i);
        	  Document doc = new Document();
        	  
        	  Field info_id = new IntField("info_id",Integer.valueOf(String.valueOf(map.get("info_id"))), Field.Store.YES);
              doc.add(info_id);
        	  
              Field info_title = new StringField("info_title", map.get("info_title")==null?"": map.get("info_title").toString(), Field.Store.YES);
              doc.add(info_title);
              
              Field info_content = new TextField("info_content", map.get("info_content")==null?"": HTMLServices.clearHTMLToString(map.get("info_content").toString()), Field.Store.YES);
              doc.add(info_content);
              
              if (writer.getConfig().getOpenMode() == OpenMode.CREATE) {
                writer.addDocument(doc);
              } else {
                writer.updateDocument(new Term("info_id",map.get("info_id")==null?"1": map.get("info_id").toString() ), doc);
              }
          }
          writer.commit();
//          // Add the path of the file as a field named "path".  Use a
//          // field that is indexed (i.e. searchable), but don't tokenize 
//          // the field into separate words and don't index term frequency
//          // or positional information:
//          Field pathField = new StringField("path", file.getPath(), Field.Store.YES);
//          doc.add(pathField);
//
//          // Add the last modified date of the file a field named "modified".
//          // Use a LongField that is indexed (i.e. efficiently filterable with
//          // NumericRangeFilter).  This indexes to milli-second resolution, which
//          // is often too fine.  You could instead create a number based on
//          // year/month/day/hour/minutes/seconds, down the resolution you require.
//          // For example the long value 2011021714 would mean
//          // February 17, 2011, 2-3 PM.
//          doc.add(new LongField("modified", file.lastModified(), Field.Store.NO));
//
//          // Add the contents of the file to a field named "contents".  Specify a Reader,
//          // so that the text of the file is tokenized and indexed, but not stored.
//          // Note that FileReader expects the file to be in UTF-8 encoding.
//          // If that's not the case searching for special characters will fail.
//          BufferedReader _content=new BufferedReader(new InputStreamReader(fis, "UTF-8"));
//          System.out.println(_content);
//          doc.add(new TextField("contents", _content));
//
//          if (writer.getConfig().getOpenMode() == OpenMode.CREATE) {
//            // New index, so we just add the document (no old document can be there):
//            System.out.println("adding " + file);
//            writer.addDocument(doc);
//          } else {
//            // Existing index (an old copy of this document may have been indexed) so 
//            // we use updateDocument instead to replace the old one matching the exact 
//            // path, if present:
//            System.out.println("updating " + file);
//            writer.updateDocument(new Term("path", file.getPath()), doc);
//          }
        }catch (Exception e) {
        	e.printStackTrace();
        }
  }
}

 

分享到:
评论

相关推荐

    Lucene4.7-Web 例子

    2. 创建索引:利用Lucene API创建索引,可以将数据库中的内容(如文章、产品信息等)进行文本分析,然后存储到内存或磁盘上的索引文件中。 3. 实现搜索引擎:通过SpringMVC控制器接收用户的搜索请求,调用Lucene的...

    lucene4.7官方完整包

    《Lucene 4.7:官方完整包详解》 Lucene是一个开源的全文搜索引擎库,由Apache软件基金会开发并维护。作为Java平台上的一个高性能、可扩展的信息检索库,Lucene为开发者提供了强大的文本搜索功能。本文将深入探讨...

    Lucene.Net 实现全文检索

    总的来说,Lucene.Net 在 .Net MVC4 上实现全文检索是一个涉及数据库交互、索引构建、查询处理和结果展示的综合过程。通过熟练掌握 Lucene.Net 的使用,可以为用户提供高效、准确的全文搜索体验。

    Lucene4.7+IK Analyzer中文分词入门教程

    Lucene是一个开源的全文检索库,它提供了文本分析、索引和搜索的核心工具。在这个入门教程中,我们将使用Lucene 4.7版本,结合IK Analyzer,一个专门针对中文分词的开源分析器,来学习如何构建一个简单的搜索引擎。 ...

    lucene全文检索简单索引和搜索实例

    《Lucene全文检索:简单索引与搜索实例详解》 Lucene是Apache软件基金会的开源项目,是一款强大的全文检索库,被广泛应用于Java开发中,为开发者提供了构建高性能搜索引擎的能力。在本文中,我们将深入探讨如何基于...

    lucene4.7 开发简单实例

    在本实例中,我们将深入探讨Lucene 4.7版本,涵盖索引的创建、修改、删除,以及查询时的排序、分页、优化和高亮显示等功能。此外,我们还将了解如何使用不同的分词器,以适应不同场景的需求。 首先,让我们从基础...

    Lucene 4.7 测试案例

    测试案例会涵盖基本的索引创建、查询执行以及结果处理,帮助开发者理解如何在实际项目中应用Lucene 4.7。此外,还可以尝试实现高级查询,如布尔查询、短语查询和范围查询,以及使用Filter和QueryWrapperFilter进行更...

    ssh集成Lucene4.7demo

    在这个“ssh集成Lucene4.7demo”项目中,开发者将SSH框架与Lucene 4.7版本的全文搜索引擎进行了整合,同时还引入了IKAnalyzer作为中文分词器,以支持对中文文本的处理。这个示例项目不仅包含了基本的整合工作,还...

    apache Lucene4.7最全最新的jar包

    Apache Lucene是一个高性能、全文本搜索库,由Java编写,被广泛用于开发搜索引擎和需要文本检索功能的应用程序。Apache Lucene 4.7是该库的一个版本,它提供了丰富的功能和改进,使得开发者能够轻松地在他们的应用中...

    使用lucene全文检索数据库

    在这个项目中,我们将探讨如何利用Lucene 2.4.0版本与Access数据库结合,实现对数据库内容的全文检索。 首先,我们需要理解Lucene的基本工作原理。Lucene的核心概念包括文档(Document)、字段(Field)和索引...

    lucene4.7所需jar包

    Lucene 4.7 是一个高性能、全文本检索库,由Apache软件基金会开发并维护。这个版本的Lucene提供了一套强大的工具,用于在大量文本数据中进行高效的搜索和索引。Lucene的核心功能包括文档的索引、查询解析、评分、...

    一种基于Lucene检索引擎的全文数据库的研究与实现

    ### 一种基于Lucene检索引擎的全文数据库的研究与实现 #### 1. 引言 随着信息技术的飞速发展和互联网的普及,大量的文本信息被数字化存储,这为信息检索带来了前所未有的挑战和机遇。传统的数据库管理系统(DBMS)...

    lucene 全文检索数据库

    标题和描述中提到的知识点是关于Lucene全文检索数据库的应用示例,特别是在处理大量数据和多表查询时的性能优化。下面将详细阐述Lucene的基本概念、如何在Java环境中使用Lucene进行全文检索,以及结合MySQL数据库的...

    Lucene 4.7 常用jar集合

    Lucene 是一个高性能、全文本搜索库,由 Apache 软件基金会开发,广泛应用于各种 Java 应用程序中,特别是那些需要高效检索功能的系统。在这个"Lucene 4.7 常用jar集合"中,包含了Lucene 4.7版本的一些核心组件,...

    lucene4.7相关jar包

    lucene4.7相关jar包 以及IKAnalyzer分词jar包

    基于Lucene的Oracle数据库全文检索.pdf

    通过使用Lucene,可以对Oracle数据库中的数据建立索引,并提供快速的全文检索功能。 Lucene的优点在于其跨平台和简单易用等特点,已经吸引了众多的用户群体。 Lucene的架构提供了完整的查询引擎和索引引擎,部分...

    Lucene全文检索引擎

    3. **索引(Index)**:索引是Lucene的核心,它是对文档集合的结构化表示,使得能快速进行全文检索。Lucene通过分词(Tokenization)、词干提取(Stemming)、去除停用词(Stopword Removal)等过程将原始文本转换...

    Lucene与关系型数据库对比

    Lucene由Doug Cutting创建,于2001年加入Apache软件基金会的Jakarta项目组,是一款用Java编写的开源全文检索引擎工具包。尽管Lucene本身并非一个完整的全文检索引擎,但它提供了完整的查询引擎和索引引擎,以及基础...

    lucene 4.7.2 Demo

    创建索引是全文检索的基础,它涉及将文本数据结构化为Lucene可以理解和查询的形式。开发者可以通过Analyzer类来处理输入的文本,进行分词、去除停用词等预处理步骤。然后,使用Document类表示要索引的数据,Field类...

Global site tag (gtag.js) - Google Analytics