码迷,mamicode.com
首页 > 编程语言 > 详细

java使用Ansj实现字符串分词

时间:2019-03-07 14:15:52      阅读:279      评论:0      收藏:0      [点我收藏+]

标签:color   []   static   next   col   ring   while   stat   str   

需要两个jar包

ansj_seg.jar

nlp-lang

public class Word{
    public static void main(String[] args) {
        String str = "你微微地笑着,不同我说什么话。而我觉得,为了这个,我已等待得很久了。";
        Result result = ToAnalysis.parse(str);
        Iterator<term> it=result.iterator();
     while(it.hasNext()){
      System.out.println(it.getName());
      
    }
} }

 

java使用Ansj实现字符串分词

标签:color   []   static   next   col   ring   while   stat   str   

原文地址:https://www.cnblogs.com/xiandong/p/10489153.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!