cn.hutool.extra.tokenizer.engine.jieba.JiebaEngine Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hutool-all Show documentation
Show all versions of hutool-all Show documentation
Hutool是一个小而全的Java工具类库,通过静态方法封装,降低相关API的学习成本,提高工作效率,使Java拥有函数式语言般的优雅,让Java语言也可以“甜甜的”。
package cn.hutool.extra.tokenizer.engine.jieba;
import com.huaban.analysis.jieba.JiebaSegmenter;
import com.huaban.analysis.jieba.JiebaSegmenter.SegMode;
import cn.hutool.core.util.StrUtil;
import cn.hutool.extra.tokenizer.TokenizerEngine;
import cn.hutool.extra.tokenizer.Result;
/**
* Jieba分词引擎实现
* 项目地址:https://github.com/huaban/jieba-analysis
*
* @author looly
*
*/
public class JiebaEngine implements TokenizerEngine {
private final JiebaSegmenter jiebaSegmenter;
private final SegMode mode;
/**
* 构造
*/
public JiebaEngine() {
this(SegMode.SEARCH);
}
/**
* 构造
*
* @param mode 模式{@link SegMode}
*/
public JiebaEngine(SegMode mode) {
this.jiebaSegmenter = new JiebaSegmenter();
this.mode = mode;
}
@Override
public Result parse(CharSequence text) {
return new JiebaResult(jiebaSegmenter.process(StrUtil.str(text), mode));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy