I am trying to use JNI on WindowsXP, java version:
java version "1.6.0_13" Java (TM) SE Runtime Environment (build 1.6.0_13-b03) Java client virtual machine HotSpot (TM) (build 11.3-b02, mixed mode, sharing)
When trying to get jclass for nested class
jclass c = env-> FindClass ("A $ B"); assert (c);
the second line says the same thing works on Linux with a slightly different version of Java (1.5 ... IIRC).
I tried several permutations like
LA $ B; AB LA.B;
but to no avail.
Any advice would be highly appreciated.
Martin
martin
source
share