I am trying to use SVMLight from Java, using the JNI wrapper on this page:
static {
System.loadLibrary(\"lib/JNI_SVM-light-6.01/lib/svmlight\");
}
>
I had an issue related to this and was reading
"Exception in thread "main" java.lang.UnsatisfiedLinkError: C:\opencv\build\java\x86\opencv_java2413.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform "
and it took me an entire night to figure out.
I solved my problem by copying the dll in C:\opencv\build\java\x64 to my system32 folder. I hope this will be of help to someone.