how to use the JNI to change the fields of a java class

旧巷老猫 提交于 2019-12-12 01:08:43

问题


I am using a c native function to change the integer fields of a java class. Basically i want to see how the call by reference can be implemented using JNI. But i am getting the error "No Implementaion found for native". Can anybody help me to solve this problem. I am new to android and java. Below are the codes that i have written. If anybody can change this to satisfy what i want i will definitely appreciate him for help.

java code :

class myclass { 

    int a = 1;
    int b = 2;
    public native void callTochangeJNI();

    static {
        System.loadLibrary("sum_jni");
    }
}

public class sum extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_sum);
        myclass myobject = new myclass(); 
        System.out.println("calling the jni native method");
        myobject.callTochangeJNI();
        System.out.println("returned from jni native method one");
        myobject.callTochangeJNI();
        System.out.format(" a = %d%n....", myobject.a);
        System.out.format("b =  %d%n...", myobject.b);
    }
}   

c native method:

void Java_com_kpit_myfirstndkapp_sum_callTochangeJNI(JNIEnv* env, jobject obj )
{

    jfieldID fid;
    jmethodID mid;
    jclass myclass;

    printf(" Inside the JNI native method \n");

    jclass localRefCls = (*env)->FindClass(env, "java/lang/String");
    myclass = (*env)->NewGlobalRef(env, localRefCls);

    fid = (*env)->GetFieldID(env,myclass," a ","I");
    (*env)->SetIntField(env, obj ,fid,3);

    fid = (*env)->GetFieldID(env,myclass," b ","I");
    (*env)->SetIntField(env, obj ,fid,4);

}

below is the log that i am getting :

07-25 09:33:07.723: D/dalvikvm(573): Trying to load lib /data/da/com.kpit.myfirstndkapp /lib/libsum_jni.so 0x4129d7b8
07-25 09:33:07.723: D/dalvikvm(573): Added shared lib /data/data/com.kpit.myfirstndkapp/lib/libsum_jni.so 0x4129d7b8
07-25 09:33:07.723: D/dalvikvm(573): No JNI_OnLoad found in /data/data/com.kpit.myfirstndkapp/lib/libsum_jni.so 0x4129d7b8, skipping init
07-25 09:33:07.723: I/System.out(573): calling the jni native method
07-25 09:33:07.723: W/dalvikvm(573): No implementation found for native Lcom/kpit/myfirstndkapp/myclass;.callTochangeJNI ()V
07-25 09:33:07.733: I/dalvikvm(573): Wrote stack traces to '/data/anr/traces.txt'
07-25 09:33:07.804: D/AndroidRuntime(573): Shutting down VM
07-25 09:33:07.804: W/dalvikvm(573): threadid=1: thread exiting with uncaught exception (group=0x409c01f8)
07-25 09:33:07.854: E/AndroidRuntime(573): FATAL EXCEPTION: main
07-25 09:33:07.854: E/AndroidRuntime(573): java.lang.UnsatisfiedLinkError: callTochangeJNI
07-25 09:33:07.854: E/AndroidRuntime(573):  at com.kpit.myfirstndkapp.myclass.callTochangeJNI(Native Method)
07-25 09:33:07.854: E/AndroidRuntime(573):  at com.kpit.myfirstndkapp.sum.onCreate(sum.java:27)
07-25 09:33:07.854: E/AndroidRuntime(573):  at android.app.Activity.performCreate(Activity.java:4465)
07-25 09:33:07.854: E/AndroidRuntime(573):  at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1049)
07-25 09:33:07.854: E/AndroidRuntime(573):  at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1920)
07-25 09:33:07.854: E/AndroidRuntime(573):  at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1981)
07-25 09:33:07.854: E/AndroidRuntime(573):  at android.app.ActivityThread.access$600(ActivityThread.java:123)
07-25 09:33:07.854: E/AndroidRuntime(573):  at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1147)
07-25 09:33:07.854: E/AndroidRuntime(573):  at android.os.Handler.dispatchMessage(Handler.java:99)
07-25 09:33:07.854: E/AndroidRuntime(573):  at android.os.Looper.loop(Looper.java:137)
07-25 09:33:07.854: E/AndroidRuntime(573):  at android.app.ActivityThread.main(ActivityThread.java:4424)
07-25 09:33:07.854: E/AndroidRuntime(573):  at java.lang.reflect.Method.invokeNative(Native Method)
07-25 09:33:07.854: E/AndroidRuntime(573):  at java.lang.reflect.Method.invoke(Method.java:511)
07-25 09:33:07.854: E/AndroidRuntime(573):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
07-25 09:33:07.854: E/AndroidRuntime(573):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
07-25 09:33:07.854: E/AndroidRuntime(573):  at dalvik.system.NativeStart.main(Native Method)
07-25 09:33:08.234: I/dalvikvm(573): threadid=3: reacting to signal 3
07-25 09:33:08.264: I/dalvikvm(573): Wrote stack traces to '/data/anr/traces.txt'
07-25 09:33:08.554: I/dalvikvm(573): threadid=3: reacting to signal 3
07-25 09:33:08.623: I/dalvikvm(573): Wrote stack traces to '/data/anr/traces.txt'
07-25 09:38:07.994: I/Process(573): Sending signal. PID: 573 SIG: 9

Please help me


回答1:


The name and signature of your C method is wrong, the name must be Java_PackageName_ClassName_CfunctionName

If you call it from a class named MyClass and its package name is com.kpit.myfirstndkapp then your method must be declared as

 JNIEXPORT void JNICALL Java_com_kpit_myfirstndkapp_MyClass_callToChangeJNI(...)



回答2:


Finally, after some debugging i got the exact code which changes the values of a and b to new values. Here is the correct code:

Java code:

package com.kpit.myfirstndkapp;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

class myclass { 
int a = 1;
int b = 2;

public native void callTochangeJNI();

static {
System.loadLibrary("sum_jni");
}
}

public class sum extends Activity {

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_sum);

myclass myobject = new myclass(); 

System.out.println("calling the jni native method");

myobject.callTochangeJNI();
System.out.println("returned from jni native method one");

System.out.format(" a = %d%n....", myobject.a);
System.out.format("b =  %d%n...", myobject.b);

} }

C native library code:

#include <stdio.h>
#include <stdlib.h>
#include <jni.h>

void Java_com_kpit_myfirstndkapp_myclass_callTochangeJNI(JNIEnv* env,
jobject obj)
{
jfieldID fid;
jmethodID mid;
jclass myclass;

printf(" Inside the JNI native method \n");
jclass cls = (*env)->GetObjectClass(env, obj);

fid = (*env)->GetFieldID(env,cls,"a","I");
(*env)->SetIntField(env, obj ,fid,3);

fid = (*env)->GetFieldID(env,cls,"b","I");
(*env)->SetIntField(env, obj ,fid,4);


}

This works and i get the below log on the screen:
07-26 06:42:30.838: I/System.out(551): calling the jni native method
07-26 06:42:30.859: I/System.out(551): returned from jni native method one
07-26 06:42:30.859: I/System.out(551):  a = 3
07-26 06:42:30.868: I/System.out(551): ....b =  4
07-26 06:42:31.179: I/Process(93): Sending signal. PID: 551 SIG: 3 
07-26 06:42:31.179: I/dalvikvm(551): threadid=3: reacting to signal 3
07-26 06:42:31.269: I/dalvikvm(551): Wrote stack traces to '/data/anr/traces.txt'
07-26 06:42:31.348: D/gralloc_goldfish(551): Emulator without GPU emulation detected.  
07-26 06:42:31.498: I/ActivityManager(93): Displayed com.kpit.myfirstndkapp/.sum:

+2s524ms (total +1m25s486ms) 07-26 06:42:31.558: I/ActivityManager(93): Displayed com.android.launcher/com.android.launcher2.Launcher: +1m25s544ms

I am very thankful to stackoverflow.com to provide such a helping platform for learners like me



来源:https://stackoverflow.com/questions/11647646/how-to-use-the-jni-to-change-the-fields-of-a-java-class

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!