资源简介
由于IK官方的IK Analyzer 2012FF_hf1.zip 只支持到V4,V5配置官方的这个会报抽象方法错误,这个也是网上找的大牛的基于源码修复过的,亲测在solr 5.2.0下可用。
代码片段和文件信息
/**
* IK 中文分词 版本 5.0
* IK Analyzer release 5.0
*
* 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.
*
* 源代码由林良益(linliangyi2005@gmail.com)提供
* 版权声明 2012,乌龙茶工作室
* provided by Linliangyi and copyright 2012 by Oolong studio
*
*/
package org.wltea.analyzer.cfg;
import java.util.List;
/**
*
* 配置管理类接口
*
*/
public interface Configuration {
/**
* 返回useSmart标志位
* useSmart =true ,分词器使用智能切分策略, =false则使用细粒度切分
* @return useSmart
*/
public boolean useSmart();
/**
* 设置useSmart标志位
* useSmart =true ,分词器使用智能切分策略, =false则使用细粒度切分
* @param useSmart
*/
public void setUseSmart(boolean useSmart);
/**
* 获取主词典路径
*
* @return String 主词典路径
*/
public String getMainDictionary();
/**
* 获取量词词典路径
* @return String 量词词典路径
*/
public String getQuantifierDicionary();
/**
* 获取扩展字典配置路径
* @return List 相对类加载器的路径
*/
public List getExtDictionarys();
/**
* 获取扩展停止词典配置路径
* @return List 相对类加载器的路径
*/
public List getExtStopWordDictionarys();
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1055 2015-03-18 11:00 IK-Analyzer\.classpath
文件 387 2015-03-18 09:02 IK-Analyzer\.project
文件 598 2015-03-18 09:02 IK-Analyzer\.settings\org.eclipse.jdt.core.prefs
文件 41 2015-03-18 10:05 IK-Analyzer\bin\ext.dic
文件 404 2015-03-18 10:05 IK-Analyzer\bin\IKAnalyzer.cfg.xm
文件 422 2015-03-18 10:14 IK-Analyzer\bin\org\wltea\analyzer\cfg\Configuration.class
文件 3188 2015-03-18 10:14 IK-Analyzer\bin\org\wltea\analyzer\cfg\DefaultConfig.class
文件 6412 2015-03-18 10:14 IK-Analyzer\bin\org\wltea\analyzer\core\AnalyzeContext.class
文件 1575 2015-03-18 10:14 IK-Analyzer\bin\org\wltea\analyzer\core\CharacterUtil.class
文件 2560 2015-03-18 10:14 IK-Analyzer\bin\org\wltea\analyzer\core\CJKSegmenter.class
文件 4536 2015-03-18 10:14 IK-Analyzer\bin\org\wltea\analyzer\core\CN_QuantifierSegmenter.class
文件 3563 2015-03-18 10:14 IK-Analyzer\bin\org\wltea\analyzer\core\IKArbitrator.class
文件 3563 2015-03-18 10:14 IK-Analyzer\bin\org\wltea\analyzer\core\IKSegmenter.class
文件 211 2015-03-18 10:14 IK-Analyzer\bin\org\wltea\analyzer\core\ISegmenter.class
文件 3626 2015-03-18 10:14 IK-Analyzer\bin\org\wltea\analyzer\core\LetterSegmenter.class
文件 4063 2015-03-18 10:14 IK-Analyzer\bin\org\wltea\analyzer\core\Lexeme.class
文件 4181 2015-03-18 10:14 IK-Analyzer\bin\org\wltea\analyzer\core\LexemePath.class
文件 2175 2015-03-18 10:14 IK-Analyzer\bin\org\wltea\analyzer\core\QuickSortSet$Cell.class
文件 2629 2015-03-18 10:14 IK-Analyzer\bin\org\wltea\analyzer\core\QuickSortSet.class
文件 7853 2015-03-18 10:14 IK-Analyzer\bin\org\wltea\analyzer\dic\Dictionary.class
文件 5438 2015-03-18 10:14 IK-Analyzer\bin\org\wltea\analyzer\dic\DictSegment.class
文件 1688 2015-03-18 10:14 IK-Analyzer\bin\org\wltea\analyzer\dic\Hit.class
文件 2779160 2015-03-18 10:05 IK-Analyzer\bin\org\wltea\analyzer\dic\main2012.dic
文件 1509 2015-03-18 10:05 IK-Analyzer\bin\org\wltea\analyzer\dic\quantifier.dic
文件 1345 2015-03-18 10:59 IK-Analyzer\bin\org\wltea\analyzer\lucene\IKAnalyzer.class
文件 2518 2015-03-18 10:54 IK-Analyzer\bin\org\wltea\analyzer\lucene\IKTokenizer.class
文件 993 2015-03-18 10:14 IK-Analyzer\bin\org\wltea\analyzer\query\IKQueryex
文件 11557 2015-03-18 10:14 IK-Analyzer\bin\org\wltea\analyzer\query\IKQueryex
文件 4187 2015-03-18 11:01 IK-Analyzer\bin\org\wltea\analyzer\query\SWMCQueryBuilder.class
文件 2676 2015-03-18 10:14 IK-Analyzer\bin\org\wltea\analyzer\sample\IKAnalzyerDemo.class
............此处省略62个文件信息
评论
共有 条评论