public static Intelligence systemLogic;
/**
* @param args
*/
public String getNumber(String filepath) throws Exception{
String number1 = null;
Intelligence grabNumber = null;
grabNumber = new Intelligence(false);
number1 = grabNumber.recognize(new CarSnapshot(filepath));
}
创建实例本身时失败
答案 0 :(得分:0)
编辑:查看另一个similar question上的答案。
我假设您在尝试初始化Intelligence对象时发生错误:
grabNumber = new Intelligence(false);
之所以发生这种情况,是因为其构造函数中的Intelligence对象正在寻找./config.xml
,并且无法在您的项目中找到它。
一种可能的解决方案是在JavaANPR jar文件中找到config.xml
文件并将其放在类路径中(如果您使用的是项目的主目录eclipse)。
另一个解决方案是使用JavaANPR源代码创建您自己的项目,并像我一样编辑config.xml
的加载。我将很快打开我的JavaANPR版本。