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.
可能重复:将 字符串从 Java 传递到 JNI 将字符串数组从 Java 传递到 C 与 JNI
我需要将列表List < String >从 java 返回到 jni。我应该怎么做,我还需要将返回的值转换为JNI 端的 std::string 数组。谁能告诉我该怎么做。
Java 和 C 之间的数据交换可以仅使用原始类型来执行。所以通过JNI是不可能的。替代方案可能是SWIG或JavaCpp。