Can I know the name of the class that calls a JNI C method?(我能知道调用 JNI C 方法的类的名称吗?)
问题描述
Is there any way I can know the name of the class that called a method in JNI C code ? I can obtain a reference to the class using the following statement :
jclass cls = (*env)->GetObjectClass(env,obj);
But is there any way I can know the name of the class ? .
This code will give you the calling class name:
jclass cls = env->GetObjectClass(obj);
// First get the class object
jmethodID mid = env->GetMethodID(cls, "getClass", "()Ljava/lang/Class;");
jobject clsObj = env->CallObjectMethod(obj, mid);
// Now get the class object's class descriptor
cls = env->GetObjectClass(clsObj);
// Find the getName() method on the class object
mid = env->GetMethodID(cls, "getName", "()Ljava/lang/String;");
// Call the getName() to get a jstring object back
jstring strObj = (jstring)env->CallObjectMethod(clsObj, mid);
// Now get the c string from the java jstring object
const char* str = env->GetStringUTFChars(strObj, NULL);
// Print the class name
printf("
Calling class is: %s
", str);
// Release the memory pinned char array
env->ReleaseStringUTFChars(strObj, str);
Note that I haven't taken any actions to check for errors. This is just a small code snippet describing how it could be done.
Alternatively you could do this instead of using the GetStringUTFChars/ReleaseStringUTFChars
:
// Make sure that the buffer is large enough
char str[128];
jint strlen = env->GetStringUTFLength(strObj);
env->GetStringUTFRegion(strObj, 0, strlen, str);
printf("
Calling class is: %s
", str);
No need to release since the string is copied to local buffer.
这篇关于我能知道调用 JNI C 方法的类的名称吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:我能知道调用 JNI C 方法的类的名称吗?
基础教程推荐
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01