Hi all,
I'm 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 HotSpot(TM) Client VM (build 11.3-b02, mixed mode, sharing)
When trying to get jclass for a nested class
jclass c = env->FindClass ("A$B"); assert (c);
the second line asserts, The same thing works ok on Linux with slightly different version of Java (1.5... IIRC).
I've tried several permutations like
LA$B; A.B LA.B;
but to no avail.
Any advice will be highly appreciated.
Martin