Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何检查我/用户当前使用的 JNI 版本?有没有我直接在 shell 提示符下执行的命令?
我不知道外壳的方法。您可以打开 jni.h 文件并查看版本,或者如果您想通过程序来完成,例如
#ifdef JNI_VERSION_1_4 printf("Version is 1.4 \n"); #endif
也可以使用 JNI 函数jint GetVersion(JNIEnv *env);
jint GetVersion(JNIEnv *env);
对于想知道的人,请将 GetVersion 返回的数字写成十六进制以轻松解释其含义。