1 Star 0 Fork 13

快想/DD_MDM_RUSH_TOOL

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
NewClass.java 764 Bytes
一键复制 编辑 原始数据 按行查看 历史
import java.io.IOException;
import java.io.StringReader;
import org.wltea.analyzer.IKSegmentation;
import org.wltea.analyzer.Lexeme;
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author Administrator
*/
public class NewClass {
public static void main( String[] args ) throws IOException{
String str = "用友软件股份";
StringReader reader = new StringReader(str);
IKSegmentation ik = new IKSegmentation(reader,false);//当为true时,分词器进行最大词长切分
Lexeme lexeme = null;
while((lexeme = ik.next())!=null)
System.out.println(lexeme.getLexemeText());
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/zhanght_admin/DD_MDM_RUSH_TOOL.git
git@gitee.com:zhanght_admin/DD_MDM_RUSH_TOOL.git
zhanght_admin
DD_MDM_RUSH_TOOL
DD_MDM_RUSH_TOOL
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385