使用 JNI 创建、填充和返回 Java 类实例
2022-09-04 22:12:53
我正在尝试使用 JNI 函数来创建一个 Java 类,并使用 DeviceId.java 构造函数方法设置该类的一些属性。我能够使用GetMethodID获取构造函数方法,但是我如何创建一个新的 Device实例.java然后设置属性(setId和setCache)。目标是将设备.java对象的完全填充实例返回给调用方。有什么想法吗?
JNI 函数:
JNIEXPORT jobject JNICALL Java_com_test_getID(JNIEnv *env, jclass cls)
{
jmethodID cnstrctr;
jclass c = (*env)->FindClass(env, "com/test/DeviceId");
if (c == 0) {
printf("Find Class Failed.\n");
}else{
printf("Found class.\n");
}
cnstrctr = (*env)->GetMethodID(env, c, "<init>", "(Ljava/lang/String;[B)V");
if (cnstrctr == 0) {
printf("Find method Failed.\n");
}else {
printf("Found method.\n");
}
return (*env)->NewObject(env, c, cnstrctr);
}
Java 类:
package com.test;
public class DeviceId {
private String id;
private byte[] cache;
public DeviceId(){}
public DeviceId(String id, byte[] cache){
this.id=id;
this.cache=cache;
}
public byte[] getCache() {
return cache;
}
public void setCache(byte[] cache) {
this.cache = cache;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
}