部分代码:
import ICTCLAS.I3S.AC.ICTCLAS50;
public class ictclas_demo {
public static void main(String[] args) {
try {
ICTCLAS50 testICTCLAS50 = new ICTCLAS50();
// 分词所需库的路径
String argu = ".";
// 初始化
if (testICTCLAS50.ICTCLAS_Init(argu.getBytes("GB2312")) == false) {
System.out.println("Init Fail!");
return;
} else {
System.out.println("Init Succeed!");
}
------解决方案--------------------
1. 楼主java类名命名不规范,建议 ictclas_demo 改为 Ictclas_demo;
2. 建议把ICTCLAS_Init()方法的源码贴出来
------解决方案--------------------
ICTCLAS_Init 这个方法里面什么逻辑啊?
------解决方案--------------------
if(testICTCLAS50.ICTCLAS_Init(argu.getBytes("GB2312")) == false)结果为true当然就执行System.out.println("Init Fail!");了,你应该把ICTCLAS_Init()这个方法贴出来,让大家看下里面的逻辑是怎样的,才能判断为什么出错