我想在c中創建一個新的數組,並保持原始數組加倍。這是我的C代碼,它編譯,但應用程序崩潰:jni - 將int [] []轉換爲jobjectArray並將其返回給java
#include <jni.h>
JNIEXPORT jobjectArray JNICALL Java_com_example_jninew_MainActivity_getNum(JNIEnv *env, jobject obj, jintArray arr)
{
int i,j, sum = 0;
jsize width = (*env)->GetArrayLength(env, arr);
int array[2][2];
for (i=0; i<width; i++){
jintArray *line = (*env)->GetObjectArrayElement(env, arr, i);
int height = (*env)->GetArrayLength(env, line);
jint *pos = (*env)->GetIntArrayElements(env, line, 0);
for (j=0; j<height; j++){
array[i][j] = 2*pos[j];
}
(*env)->ReleaseIntArrayElements(env, arr, pos, 0);
}
return array;
}
主要java代碼:
package com.example.jninew;
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.TextView;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TextView textView = (TextView) findViewById(R.id.tv);
int[][] a = {{1,2},{3,55}};
a = getNum(a);
textView.setText("G"+a[0][1]);
}
static{
System.loadLibrary("getNum");
}
native int[][] getNum(int[][] a);
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
你能幫我返回數組到Java的一面呢?拜託我需要你的幫忙!
'a'從哪裏來?您正在返回一個自動變量('array'),該函數在函數返回後不再有效。 – Ctx
@Ctx它是我想返回的數組。 – yanisB
看看這裏:http://stackoverflow.com/questions/1610045/how-to-return-an-array-from-jni-to-java這應該會幫助你如何從jni返回一個合適的java int數組 – Ctx