A reliable way to get jnienv* in the NDK

Source: Internet
Author: User

When using the NDK, almost any method requires a jnienv to invoke. This class is thread-dependent, how can you reliably get it?

First of all, as the NDK so, there must be a place called by the Android system, this call will bring a jnienv parameter, do not use it, but call:

JNIENV->GETJAVAVM (&G_JAVAVM);

Gets a JAVAVM type variable.

Then call when you need to use jnienv.

    int status;    jnienv* _jnienv = NULL;    Status = G_javavm->getenv (void * *) &_jnienv, jni_version_1_6);        if (Status < 0)    {        status = G_javavm->attachcurrentthread (&_jnienv, NULL);        if (Status < 0)        {            _jnienv = NULL;        }    }

Can reliably get the jnienv.

A reliable way to get jnienv* in the NDK

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.