JNI에서 기본형 배열을 다루는 예
JNI Functions Reference : http://download.oracle.com/javase/1.4.2/docs/guide/jni/spec/functions.html#wp17314
HelloJNI.java
public class HelloJNI {
static{
System.loadLibrary("my_dll");
}
/* byte[]을 전달하고 byte[]을 리턴하는 예 */
public native byte[] byteArrayTest(byte [] name);
public static void main(String[] args) throws Exception{
HelloJNI test = new HelloJNI();
byte[] src = {0,1,2,3,4,5,6,7,8,9};
byte[] result = test.byteArrayTest(src);
System.out.println("Java측에서 수신한 배열[9]:"+result[9]);
}
}
HelloJNI.h
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class HelloJNI */
#ifndef _Included_HelloJNI
#define _Included_HelloJNI
#ifdef __cplusplus
extern "C" {
#endif
/*
* Class: HelloJNI
* Method: byteArrayTest
* Signature: ([B)[B
*/
JNIEXPORT jbyteArray JNICALL Java_HelloJNI_byteArrayTest
(JNIEnv *, jobject, jbyteArray);
#ifdef __cplusplus
}
#endif
#endif
my_dll.c
#include "HelloJNI.h"
#include <stdio.h>
JNIEXPORT jbyteArray JNICALL Java_HelloJNI_byteArrayTest
(JNIEnv *env, jobject jobj, jbyteArray jsrc) {
jbyteArray result;
jsize n = (*env)->GetArrayLength(env, jsrc);
jbyte *pbyte = (*env)->GetByteArrayElements(env,jsrc, 0);
int i = 0;
jbyte value;
result = (*env)->NewByteArray(env, 10);
for(i=0;i<n;i++) {
(*env)->GetByteArrayRegion(env, jsrc,i,1,&value);
printf("%d-->%d \n", i, value);
(*env)->SetByteArrayRegion(env, result, i, 1, &value);
}
/*혹은 다음과 같이 한꺼번에 배열원소를 초기화할 수 있다 */
(*env)->SetByteArrayRegion(env, result, 0, 10, pbyte);
(*env)->ReleaseByteArrayElements(env, jsrc, pbyte, 0);
return result;
}
Release<Type>ArrayElements()메소드의 3번째 아규먼트에 대하여
0 : 원본배열에 변경내용을 반영하고 메모리 회수가 요구되면 메모리를 회수한다
JNI_COMMIT : 원본배열에 변경내용을 반영하나, 메모리는 회수하지 않는다(배열의 원본으로 작업한 경우 유용함)
JNI_ABORT : 원본배열에 변경내용을 반영하지 않고, 메모리는 회수한다(복사본으로 작업하고 배열수정이 없는 경우 유용)