在使用paoding分词的时候,出现了错误,please set a system env PAODING_DIC_HOME or Config paoding.dic.home in paoding-dic-home.properties point to the dictionaries!
这是因为在老版本的PaodingMaker.getFile()方法中采用的是老版本的java.net.URL.getFile(),不能够识别中文或者空格,需要修改源代码重新打包,只有采用URL.toRUL().getPath()才能识别汉字与空格。
这部分是自己加的代码
//这部分代码是自己添加的,主要是解决路径中不能有空格的问题
File dicHomeFile2 = getFile(dicHome);
String path = "";
try{
path = URLDecoder.decode(dicHomeFile2.getPath(),"UTF-8");
}catch(UnsupportedEncodingException e){
e.printStackTrace();
}
File dicHomeFile = new File(path);