springboot整合IK分词器

springboot整合IK分词器,第1张

核心代码:

private static Set segment(String text) throws Exception{ //text 为你要搜索的内容

Set set = new HashSet<>();

StringReader re = new StringReader(text.trim());

IKSegmenter ik= new IKSegmenter(re,true);

Lexeme lex;

while((lex = ik.next())!=null){

set.add(lex.getLexemeText());

}

return set;

}

引入依赖:

com.janeluo

ikanalyzer

2012_u6

IKAnalyzer.cfg.xml

IK Analyzer 扩展配置

ikConf/ext.dic;

ikConf/stopword.dic;

ext.dic和stopword.dic格式

车险理赔

财产险理赔

。。。

。。。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/739580.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-28
下一篇 2022-04-28

发表评论

登录后才能评论

评论列表(0条)

保存