6

我有Object一个HashMap字段。当Object传递给 C 时,我如何访问该字段?

Object's具有以下Class字段:

private String hello;
private Map<String, String> params = new HashMap<String, String>();
4

1 回答 1

12

您的问题的答案实际上归结为为什么您想将 a 传递Map给 C 而不是在 Java 中迭代您Map的并将内容传递给 C。但是,我有什么资格质疑为什么?

您问如何访问HashMap(在您提供的代码中Map)字段?用 Java 为它编写一个访问器方法,并在传递容器时从 C 中调用该访问器方法Object。下面是一些简单的示例代码,展示了如何将 a从 Java 传递到 C ,Map以及如何访问size(). Map从中,您应该能够推断出如何调用其他方法。

容器对象:

public class Container {

    private String hello;
    private Map<String, String> parameterMap = new HashMap<String, String>();

    public Map<String, String> getParameterMap() {
        return parameterMap;
    }
}

将容器传递给 JNI 的主类:

public class MyClazz {

    public doProcess() {

        Container container = new Container();
        container.getParameterMap().put("foo","bar");

        manipulateMap(container);
    }

    public native void manipulateMap(Container container);
}

相关C函数:

JNIEXPORT jint JNICALL Java_MyClazz_manipulateMap(JNIEnv *env, jobject selfReference, jobject jContainer) {

    // initialize the Container class
    jclass c_Container = (*env)->GetObjectClass(env, jContainer);

    // initialize the Get Parameter Map method of the Container class
    jmethodID m_GetParameterMap = (*env)->GetMethodID(env, c_Container, "getParameterMap", "()Ljava/util/Map;");

    // call said method to store the parameter map in jParameterMap
    jobject jParameterMap =  (*env)->CallObjectMethod(env, jContainer, m_GetParameterMap);

    // initialize the Map interface
    jclass c_Map = env->FindClass("java/util/Map");

    // initialize the Get Size method of Map
    jmethodID m_GetSize = (*env)->GetMethodID(env, c_Map, "size", "()I");

    // Get the Size and store it in jSize; the value of jSize should be 1
    int jSize = (*env)->CallIntMethod(env, jParameterMap, m_GetSize);

    // define other methods you need here.
}

值得注意的是,我并不热衷于在方法本身中初始化 methodID 和类。这个 SO Answer向您展示了如何缓存它们以供重复使用。

于 2013-05-31T19:13:35.663 回答