1金币
设置License如下写法:
public static boolean setLicense() throws Exception{
File classPath = (new File(OcrUtil.class.getProtectionDomain().getCodeSource().getLocation().getPath())).getParentFile();
String classPathDecode = URLDecoder.decode(classPath.getAbsolutePath(), "UTF-8");
String var0 = classPathDecode + "\\classes\\keys\\LEADTOOLS.LIC";
String var1 = classPathDecode + "\\classes\\keys\\LEADTOOLS.LIC.KEY";
try {
RasterSupport.setLicense(var0, var1);
} catch (Exception var3) {
System.out.println(var3.getMessage());
return false;
}
return !RasterSupport.getKernelExpired();
}
但是License文件是我们买的,到期时间到2035年。
为什么运行的时候出Invalid runtime license 的错误呢?
我们是V19版本的
|
|