有没有什么方法可以在我的ndk appliation中传递/获取android上下文的对象。我想通过jni接口在我的ndk应用程序中使用SharedPreferences
。要获取SharedPreferences
对象的实例,我需要在getSharedPreferences()
对象上调用Context
。但我无权访问上下文对象。
OR
如何从NDK读取和写入xml文件?
任何指针都将受到赞赏。
答案 0 :(得分:6)
你不需要做什么特别的事情,就像常规的JNI机制一样。您需要获取指向上下文对象的指针,然后检索要调用的方法ID,然后使用所需的args调用它。
当然,在单词中听起来非常简单,但在代码中,由于所有检查和JNI调用,它变得非常混乱。
所以在我看来,我不会尝试从native / JNI代码实现整个事情,而是我将在Java中实现一个帮助器方法,它可以生成所有内容并只接收读取/写入首选项所需的数据。 / p>
这将简化您的原生代码,并使其更易于维护。
例如:
//Somewhere inside a function in your native code
void Java_com_example_native_MainActivity_nativeFunction(JNIEnv* env, jobject thiz)
{
jclass cls = (*env)->FindClass(env,"PreferenceHelper");
if (cls == 0) printf("Sorry, I can't find the class");
jmethodID set_preference_method_id;
if(cls != NULL)
{
set_preference_method_id = (*env)->GetStaticMethodID(env, cls, "setPreference", "(Ljava/lang/String;Ljava/lang/StringV");
if(set_preference_method_id != NULL )
{
jstring preference_name = (*env)->NewStringUTF(env, "some_preference_name");
jstring value = (*env)->NewStringUTF(env, "value_for_preference");
(*env)->CallStaticVoidMethod(env, cls, get_main_id, preference_name, value);
}
}
}
请注意,我只是从内存中编写代码,所以不要开箱即用。
答案 1 :(得分:2)
看起来事情最近发生了变化,上面的解决方案和其他很少的其他帖子在我发布的其他SO帖子上都没有用。经过几次尝试,我能够做出以下解决方案的工作。我的目标是将Context Object传递给JNI并获得绝对存储路径。
void Java_com_path_to_my_class_jniInit(JNIEnv* env, jobject thiz, jobject contextObject) {
try {
//Get Context Class descriptor
jclass contextClass = env->FindClass("android/content/Context");
//Get methodId from Context class
jmethodID getFilesDirMethodId = env->GetMethodID(contextClass,"getFilesDir","()Ljava/io/File;");
//Call method on Context object which is passed in
jobject fileObject = env->CallObjectMethod(contextObject,getFilesDirMethodId);
//Get File class descriptor
jclass fileClass = env->FindClass("java/io/File");
//Get handle to the method that is to be called
jmethodID absolutePathMethodId = env->GetMethodID(fileClass,"getAbsolutePath","()Ljava/lang/String;");
//Call the method using fileObject
jstring stringObject = (jstring)env->CallObjectMethod(fileObject,absolutePathMethodId);
}
catch(exception& ex){
JNIExceptionHelper::throwException(env, ex.what());
return;
}
}