在跨平台開發領域,C 應用程式可能需要存取 Java 方法提供的功能。此查詢探討了實現此整合的可行性和細微差別。
可行性與機制
是的,可以從 C/C 程式碼中呼叫 Java 方法。然而,該過程有些複雜,並且遵循反射和非類型安全的方法。
C 應用程式介面 (API) 提供了一種更清晰的方法來實現這種整合。此方法涉及在 C 程式碼中實例化 Java 虛擬機器 (JVM)。在 Java 呼叫原生程式碼的場景下,不需要建置 VM 實例。
實作
提供的程式碼片段示範如何從 C 呼叫 Java方法應用:
#include <jni.h> #include <stdio.h> int main() { JavaVM *vm; // Pointer to JVM JNIEnv *env; // JNI interface to interact with JVM JavaVMInitArgs vm_args; // JVM initialization arguments // Initialize JVM arguments vm_args.version = JNI_VERSION_1_2; vm_args.nOptions = 0; vm_args.ignoreUnrecognized = 1; // Construct a Java Virtual Machine jint res = JNI_CreateJavaVM(&vm, (void **)&env, &vm_args); // Create a Java string object jstring jstr = env->NewStringUTF("Hello World"); // Get the "java/lang/String" class jclass clazz = env->FindClass("java/lang/String"); // Get the "toLowerCase()" method ID jmethodID to_lower = env->GetMethodID(clazz, "toLowerCase", "()Ljava/lang/String;"); // Invoke the "toLowerCase()" method on the string object jobject result = env->CallObjectMethod(jstr, to_lower); // Convert the Java string to a C-style string const char* str = env->GetStringUTFChars((jstring) result, NULL); // Print the converted string printf("%s\n", str); // Release the C-style string env->ReleaseStringUTFChars(jstr, str); // Destroy the Java Virtual Machine vm->DestroyJavaVM(); return EXIT_SUCCESS; }
跨平台編譯
在Ubuntu上進行跨平台編譯,執行以下命令:
g++ -I/usr/lib/jvm/java-6-sun/include \ -I/usr/lib/jvm/java-6-sun/include/linux \ -L/usr/lib/jvm/java-6-sun/jre/lib/i386/server/ -ljvm jnitest.cc
錯誤處理
至關重要驗證所有用於正確錯誤處理的方法的回傳碼。例如,以下程式碼片段在擷取 C 樣式字串時檢查潛在的記憶體分配問題:
str = env->GetStringUTFChars(jstr, NULL); if (str == NULL) { return EXIT_FAILURE; /* out of memory */ }
以上是如何從 C 應用程式呼叫 Java 方法?的詳細內容。更多資訊請關注PHP中文網其他相關文章!