java.lang.UnsatisfiedlinkError:找不到本机方法

时间:2014-02-21 13:34:24

标签: java android android-ndk java-native-interface

我正在尝试使用jni构建一个演示应用程序(我是新手)。我用Google搜索了关于这个问题但没有任何帮助。

以下是我正在使用的代码:

include $(CLEAR_VARS)

LOCAL_MODULE    := example
LOCAL_SRC_FILES := com_example_example_Operacoes.c

include $(BUILD_SHARED_LIBRARY)

Operacoes.java     package com.example.example;

public class Operacoes {

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

//Versao nativa do metodo soma
public static native int soma(int a, int b);

//Versao nativa do metodo subtracao
public static native int sub(int a, int b);

    }

com_example_example_Operacoes.h

   # include "com_example_example_Operacoes.c"

   JNIEXPORT jint JNICALL Java_com_example_example_Operacoes_soma (JNIEnv *, jclass,          jint, jint);

   int soma(int a, int b){
return a + b;
   }


  JNIEXPORT jint JNICALL Java_com_example_example_Operacoes_sub (JNIEnv *, jclass, jint,  jint);
   int sub(int a, int b){
return a - b;
  }

com_example_example_Operacoes.h

  /* DO NOT EDIT THIS FILE - it is machine generated */
  #include <jni.h>
  /* Header for class com_example_example_Operacoes */

  #ifndef _Included_com_example_example_Operacoes
  #define _Included_com_example_example_Operacoes
  #ifdef __cplusplus
  extern "C" {
  #endif
  /*
  * Class:     com_example_example_Operacoes
  * Method:    soma
  * Signature: (II)I
  */
  JNIEXPORT jint JNICALL Java_com_example_example_Operacoes_soma (JNIEnv *, jclass, jint, jint);

  /*
  * Class:     com_example_example_Operacoes
  * Method:    sub
  * Signature: (II)I
  */
  JNIEXPORT jint JNICALL Java_com_example_example_Operacoes_sub (JNIEnv *, jclass, jint, jint);

  #ifdef __cplusplus
  }
  #endif
  #endif

1 个答案:

答案 0 :(得分:1)

您没有实现这些功能。注意你的第一行(下面),你在行的末尾有一个半冒号。然后使用不同的格式int soma(int,int)

创建第二个函数
...Java_com_example_example_Operacoes_soma (JNIEnv *, jclass, jint, jint);<<<wrong

您需要使用与声明的完全相同的格式来实现本机函数。

JNIEXPORT jint JNICALL Java_com_example_example_Operacoes_soma (JNIEnv * env, jclass clazz, jint a, jint b)
{
     return a + b;
}