在 C++/JNI 中将向量转换为 jobject?
我正在使用 Java 本机函数 -
public native ArrayList<String> parseXML();
在 C++ 中我的本机函数 -
vector<string> resultList;
JNIEXPORT jobject JNICALL Java_Sample1_parseXML
(JNIEnv *env, jobject obj){
// logic
return resultList; // here getting error
}
我的问题是如何将 resultList (向量类型)转换为 jobject 类型?
I am using Java native function -
public native ArrayList<String> parseXML();
In C++ my native function -
vector<string> resultList;
JNIEXPORT jobject JNICALL Java_Sample1_parseXML
(JNIEnv *env, jobject obj){
// logic
return resultList; // here getting error
}
My problem is that how to convert resultList (vector type) to jobject type?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须用 C++ 创建 ArrayList 的包装器。类似:
有关更多信息,请参阅:
http://download.oracle。 com/javase/1.4.2/docs/guide/jni/spec/functions.html
You would have to create a wrapper for the ArrayList in C++. Something like:
for further information see:
http://download.oracle.com/javase/1.4.2/docs/guide/jni/spec/functions.html
方法是:
所以签名是:
更多信息: http://docs.oracle.com/javase/1.5.0/docs/guide/jni/spec/types.html#wp276
The method is:
So the signature is:
More at: http://docs.oracle.com/javase/1.5.0/docs/guide/jni/spec/types.html#wp276