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 のバージョンを確認するにはどうすればよいですか? シェルプロンプトで直接実行するコマンドはありますか?
シェルからの方法がわかりません。jni.h ファイルを開いてバージョンを確認するか、プログラムを介して実行する場合は、次のようにします。
#ifdef JNI_VERSION_1_4 printf("Version is 1.4 \n"); #endif
JNI関数を使用することもできますjint GetVersion(JNIEnv *env);
jint GetVersion(JNIEnv *env);