I am a bit confused about the the objects which is passed to c from java? Should they be deleted inside the native jni method or they will be garbage collected when the method returns. For example:
if I have a native declaration in my java file public native printString(String msg); and the native method is using const char *message = (jni_env)->GetStringUTFChars(msg, &iscopy); to get c-style character array of string. Shoud I call (jni_env)->ReleaseStringUTFChars(msg, message); after doing all the stuff in native method. If yes, then why it is necessary? Why not java runtime environment be doing this on the behalf of programmer? After all the string was declared and passed from java environment.