Hello all.
I am currently writing some JNI code to call a class within my JAVA program. I have done this successfully already with static methods within a class.
Currently, when I use:
jclass proc_jclass = env->FindClass("example/io/struct/JavaClass");
It crashes the JVM with:
java.lang.ClassNotFoundException.<init>(Ljava/lang/String;)V+3
I have already tried defining class path locations, to no avail. Any help would be greatly appreciated.
Thanks.