本文介绍了使用 JNI 将字符串数组从 java 传递到 C的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
I have a string array like {"myname","yourname","hisname"}
and I am trying to send this array to C with using JNI. I could not find any clear solution for this. I have tried to take this string as a chararray
but no success.
Is there a way to do this?
解决方案
You can write a simple function that takes a jobjectArray
object, cast each one to jstring and then call GetStringUTFChars
on it.
Like this:
void MyJNIFunction(JNIEnv *env, jobject object, jobjectArray stringArray) {
int stringCount = env->GetArrayLength(stringArray);
for (int i=0; i<stringCount; i++) {
jstring string = (jstring) (env->GetObjectArrayElement(stringArray, i));
const char *rawString = env->GetStringUTFChars(string, 0);
// Don't forget to call `ReleaseStringUTFChars` when you're done.
}
}
这篇关于使用 JNI 将字符串数组从 java 传递到 C的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!