1)首先需要确认static代码块的正常加载,
static {
String os = System.getProperty("os.name").toLowerCase();
String lib = "fsdk_java_";
if (os.startsWith("win")) {
lib += "win";
} else if (os.startsWith("mac")) {
lib += "mac";
} else {
lib += "linux";
}
if (System.getProperty("sun.arch.data.model").equals("64")) {
if(System.getProperty("os.arch").equals("aarch64")){
lib += "arm";
}
else{
lib += "64";
}
} else {
lib += "32";
}
System.loadLibrary(lib);
}
2)然后需要确认您的开发包的lib目录下的key文件的ExpiredDate是否还在有效期内
3)查看sn、key的值是否是正确的