When calling the GetFieldID method through the JNI environment variable, you are required to provide a Field Descriptor for the desired field. How do you find what the Field Descriptor for an object is?
Example:
jfieldID strField = env->GetFieldID(myClass, "example", "Ljava/lang/String;");
How would I determine that "Ljava/lang/String;" is the Field Descriptor for a String object?