Правильно возвращать жестко закодированный байт [] из JNI в Java
Я хочу жестко закодировать 16-байтовый массив в JNI и вернуть его методом.
Это не работает
static jbyteArray JNICALL getKeyBytes(JNIEnv *env, jobject thiz)
{
F_LOG;
Mutex::Autolock _m(sLock);
jbyteArray result;
jbyte* resultType = new jbyte[16];
result = (*env)->NewByteArray(env, 16); //line 214
resultType = {52, 14, 25, 32, 75, 83, 35, 89, 40, 69, 35, 73, 84, 82, 35, 30};
(*env)->SetByteArrayRegion(env, result, 0, 16, resultType);
delete [] resultType;
return result;
}
Я получаю следующие ошибки
NativeCodeCaller.cpp:214:17: error: base operand of '->' has non-pointer type '_JNIEnv'
NativeCodeCaller.cpp:215:78: warning: extended initializer lists only available with -std=c++0x or -std=gnu++0x
NativeCodeCaller.cpp:215:78: error: cannot convert "brace-enclosed initializer list>" to 'jbyte*' in assignment
NativeCodeCaller.cpp:216:8: error: base operand of '->' has non-pointer type '_JNIEnv'
любая быстрая помощь? :)