java – JNI NewByteArray内存泄漏

前端之家收集整理的这篇文章主要介绍了java – JNI NewByteArray内存泄漏前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个 Java方法来处理位图并返回一个String.
当我从JNI(VS 2010)中调用方法时,它可以工作,但是如果我多次调用方法,
这个过程的记忆长大直到崩溃.
使用大量内存的指令是:
jbyteArray jBuff = _env->NewByteArray(b->Length);

我的代码

static jobject staticArray=0;

System::String^ MyClass::ExecuteJavaMethod(System::Drawing::Bitmap^ bmp)
{
    JNIEnv *_env;
    System::String^ out;
    unsigned const char * buff;

    int res = jvm->AttachCurrentThread((void **)&_env,NULL);

    if (jvm->GetEnv((void**) &_env,JNI_VERSION_1_6) != JNI_OK)
    {
        return "GetEnv ERROR";
    }

    //save the bitmap in the stream
    MemoryStream^ ms = gcnew MemoryStream();
    bmp->Save(ms,ImageFormat::Bmp);

    //get the bitmap buffer
    array<unsigned char>^b = ms->GetBuffer() ;

    //unmanaged conversion
    buff = GetUnmanaged(b,b->Length);


    //fill the buffer
    jbyteArray jBuff = _env->NewByteArray(b->Length);       
    _env->SetByteArrayRegion(jBuff,b->Length,(jbyte*) buff);

    //call the java method
    jstring str = (jstring) _env->CallStaticObjectMethod (  Main,javaMethod,jBuff);



    // _env->ReleaseByteArrayElements(jBuff,(jbyte*)buff),0); //NOT WORKING

    //staticArray= _env->NewGlobalRef(jBuff);  NOT
    //_env->DeleteLocalRef(jBuff);             WORKING  


    //return the string result of the java method
    return gcnew String(env->GetStringUTFChars(str,0));

}

解决方法

答案是:_env-> DeleteLocalRef(jBuff);

猜你在找的Java相关文章