Android NDK Call Java From C++

來源:互聯網
上載者:User

I search the Android NDK document and Internet a bit, and could not find anything useful to help me play sound with C++ under the Android NDK. Most of topics are about how to play sound with Java, so I grape an idea that why not call Java from C++. I tried along this way, and finally all those stuff works as I expected before.

 

Implement Java static function

A Sound player class implemented in Java class. In addition to play sound basic feature, I also make it expose a static function that will be called from C++. The reason why I used a static function here is that static function could allow me correctly find the right Java object instance, the one with sound pool initialized well and file loaded ok will be the correct one.

public class SoundManager {    ......        public static void sPlaySound(int sound)    {        if ( null != sInstance )            sInstance.PlaySound(sound);    }    }

 

Call Java function from C/C++
static JavaVM* g_JavaVM = NULL;static const char *g_JavaClassName = "com/easygame/SoundManager";JNIEXPORT jint JNI_OnLoad(JavaVM* jvm, void* reserved){    g_JavaVM = jvm;    JNIEnv *env = NULL;    if (jvm->GetEnv((void**) &env, JNI_VERSION_1_6) != JNI_OK)        return -1;    return JNI_VERSION_1_6;}JNIEXPORT void JNI_OnUnload(JavaVM* jvm, void* reserved){    g_JavaVM = NULL;    JNIEnv *env = NULL;    if (jvm->GetEnv((void**) &env, JNI_VERSION_1_6) != JNI_OK)        return;}void SysPlaySound(int soundId){    if (g_JavaVM == NULL)        return;    int status = -1;    JNIEnv *env = NULL;    bool isAttached = false;    status = g_JavaVM->GetEnv((void**) &env, JNI_VERSION_1_6);    if (status < 0)      {        status = g_JavaVM->AttachCurrentThread(&env, NULL);        if (status < 0)            return;        isAttached = true;    }    if ( env != NULL )    {        jclass cls = env->FindClass(g_JavaClassName);        if ( cls != 0 )        {            jmethodID mid = env->GetStaticMethodID(cls, "sPlaySound", "(I)V");            if ( mid != 0 )                env->CallStaticVoidMethod(cls, mid, soundId);        }    }    if ( isAttached )        g_JavaVM->DetachCurrentThread();    }

Function JNI_OnLoad and JNI_OnUnload are Android NDK system call back functions, that will allow us to get the current Java virtual machine. We need to get the class static method or object member function  from the Java virtual machine. Now we could call function SysPlaySound as a C/C++ native function.

 

Reference

http://blog.csdn.net/airun_zou/article/details/7110101

http://www.cnblogs.com/luxiaofeng54/archive/2011/08/17/2142000.html

http://qfqf16.blog.163.com/blog/static/128109527201281263955386/

http://blog.chinaunix.net/uid-7448773-id-310170.html

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.