调用native方法时报错如下 : “java.lang.UnsatisfiedLinkError: Native method not found.... ”;
原因分析:
链接器只看到了在so中该方法声明,没有看到该方法定义.只要让它们匹配就可.
解决方法:
1、检查包名,类名是否出错.
2、c++中的方法Java_xxx_xxx 中的Java 首字母一定要大写. (这种情况我测试并没有出现)
3、在xxx.cpp中 忘记 include "xxx.h",这是其中一种可能的情况.
一般javah生成的头文件xxx.h都用extern "C"{...} ,如果这时你在xxx.cpp中实现xxx.h中的方法,那么就要在方法定义前加extern "C" {}
如果不加extern "C"{} ,编译器生成的是C++类型的函数,而在xxx.h中声明的c函数,相当于只有声明,并没有定义.链接器就找不到.
要么都编译成c++函数,要么都编译成c函数,
NativeStudent.cpp
#include <jni.h> #include "com_example_ndksample_NativeStudent.h"
/*
* Class: com_example_ndksample_NativeStudent
* Method: getName
* Signature: ()Ljava/lang/String;
*/
JNIEXPORT jstring JNICALL Java_com_example_ndksample_NativeStudent_getName
(JNIEnv *env, jobject javaStudent)
{
return env->NewStringUTF("zhang san");
} /*
* Class: com_example_ndksample_NativeStudent
* Method: getCls
* Signature: ()Ljava/lang/String;
*/
JNIEXPORT jstring JNICALL Java_com_example_ndksample_NativeStudent_getCls(
JNIEnv *env, jclass javaclass)
{
return env->NewStringUTF("");
} /*
* Class: com_example_ndksample_NativeStudent
* Method: add
* Signature: (II)I
*/
JNIEXPORT jint JNICALL Java_com_example_ndksample_NativeStudent_add(JNIEnv *env,
jobject obj, jint x, jint y)
{
return x + y;
}