JNI を使用して C++ プログラムに次の Java クラスをロードしようとしています。
package helloWorld;
import org.apache.log4j.Logger;
public class HelloWorld{
private static final Logger logger = Logger.getLogger(HelloWorld.class);
public static void main(String[] args){
System.out.println("Hello, World");
}
public static int square(int input){
int output = input * input;
return output;
}
public static int power(int input, int exponent){
int output,i;
output=1;
for(i=0;i<exponent;i++){
output *= input;
}
return output;
}
}
log4j-1.2.16.jar に依存します
ここに私のC++コードがあります:
#include <stdio.h>
#include <cstdlib>
#include "../Header/jni.h"
JNIEnv* create_vm(JavaVM **jvm)
{
char * classPath = (char *) "-Djava.class.path=HelloWorld-0.0.1-SNAPSHOT.jar";
JNIEnv* env;
JavaVMInitArgs args;
JavaVMOption options[2];
args.version = JNI_VERSION_1_6;
args.nOptions = 1;
options[0].optionString = classPath;
options[1].optionString = "-verbose";
args.options = options;
args.ignoreUnrecognized = 0;
int rv;
rv = JNI_CreateJavaVM(jvm, (void**)&env, &args);
if (rv < 0 || !env)
printf("Unable to Launch JVM %d\n",rv);
else
printf("Launched JVM! :)\n");
return env;
}
void invoke_class(JNIEnv* env)
{
jclass hello_world_class;
jmethodID main_method;
jmethodID square_method;
jmethodID power_method;
jint number=20;
jint exponent=3;
hello_world_class = env->FindClass("helloWorld/HelloWorld");
if(hello_world_class == NULL){
if(env->ExceptionOccurred()){
env->ExceptionDescribe();
}
printf("Class not found.");
}
else{
main_method = env->GetStaticMethodID(hello_world_class, "main", "([Ljava/lang/String;)V");
square_method = env->GetStaticMethodID(hello_world_class, "square", "(I)I");
power_method = env->GetStaticMethodID(hello_world_class, "power", "(II)I");
env->CallStaticVoidMethod(hello_world_class, main_method, NULL);
printf("%d squared is %d\n", number,
env->CallStaticIntMethod(hello_world_class, square_method, number));
printf("%d raised to the %d power is %d\n", number, exponent,
env->CallStaticIntMethod(hello_world_class, power_method, number, exponent));
}
}
int main(int argc, char **argv)
{
JavaVM *jvm;
JNIEnv *env;
env = create_vm(&jvm);
if(env == NULL)
return 1;
invoke_class(env);
system("PAUSE");
return 0;
}
HelloWorld.jar を C++ アプリケーションのルート フォルダーに配置しました。hello_world_class をロードしようとすると、次の例外がスローされます。
java.lang.NoClassDefFoundError: org/apache/log4j/Logger
at helloWorld.HelloWorld.<clinit>(HelloWorld.java:7)
log4j 依存関係は HelloWorld.jar 内にないため、JNI はそれを検出しません。libフォルダーとHelloWorld.jarと同じフォルダーに配置しようとしましたが、機能しませんでした。JNIが認識してロードできるようにするには、log4j.jarをどこに配置する必要がありますか?
どうもありがとう、私はjniの初心者なので、答えを明確にしてください。私は一日中このエラーに悩まされていました TT