我正在开发基于NDK的Android应用程序。现在我正在学习使用样本" HelloWorld"应用。但它每次都会抛出错误。 请指出错误的地方?
P.S。:我所有的cpp文件都只在jni文件夹中。
在LogCat中,调试时说;
08-19 14:52:59.340:W / dalvikvm(469):未找到任何实施 本地人 LCOM /示例/ myfirstndkapp / MainActivity; .concateneMyStringWithCppString (Ljava /郎/字符串;)Ljava /郎/字符串;
以下是基本代码:
MainActivity.java
package com.example.myfirstndkapp;
import android.support.v7.app.ActionBarActivity;
import android.support.v4.app.Fragment;
import android.os.Bundle;
import android.view.*;
public class MainActivity extends ActionBarActivity {
static {
System.loadLibrary("MyFirstNDKApp");
}
private native String concateneMyStringWithCppString(String myString);
private EditText tvGetValue = null;
private TextView tvSetValue = null;
private Button btnCallCPPMethod = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if (savedInstanceState == null) {
getSupportFragmentManager().beginTransaction()
.add(R.id.container, new PlaceholderFragment()).commit();
}
String str = concateneMyStringWithCppString("OutputString");
System.out.println("output : "+str);
}
}
Android.mk
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := MyFirstNDKApp
LOCAL_SRC_FILES := CoreWrapper.cpp
LOCAL_SRC_FILES += Core.cpp
LOCAL_C_INCLUDES := $(LOCAL_PATH)
include $(BUILD_SHARED_LIBRARY)
Application.mk
APP_STL := gnustl_static
APP_ABI := all
Core.h和Core.cpp
//
// Core.h
#ifndef __MyFistNDKApp__Core__
#define __MyFistNDKApp__Core__
#include <iostream>
const char* concateneMyStringWithCppString(const char* myString);
#endif /* defined(__MyFistNDKApp__Core__) */
// Core.cpp
#include "Core.h"
const char* CPP_BASE_STRING = "cpp says hello world to %s";
const char* concateneMyStringWithCppString(const char* myString) {
char* concatenedString = new char[strlen(CPP_BASE_STRING) + strlen(myString)];
sprintf(concatenedString, CPP_BASE_STRING, myString);
return concatenedString;
}
CoreWrapper.c
// CoreWrapper.c
#include <string.h>
#include <jni.h>
#include "Core.h"
extern "C" {
JNIEXPORT jstring JNICALL com_example_myfirstndkapp_MainActivity_concateneMyStringWithCppString(JNIEnv* env, jobject thiz, jstring myString) {
return env->NewStringUTF(concateneMyStringWithCppString(env->GetStringUTFChars(myString, 0)));
}
}
但是在运行它时会抛出错误:MainActivity.java中的 concateneMyStringWithCppString 行甚至没有进入内部。它说未被承认的一个。这是错误日志:
在该方法内部进行调试时:它导航到UnsatisfiedLinkError类方法:
public UnsatisfiedLinkError(String detailMessage) {
super(detailMessage);
}
答案 0 :(得分:0)
我发现 CoreWrapper.h 类应该使用 javah 命令自动生成。所以每次我们需要更新java类文件并重新生成这个jni文件。
根据jni生成的头文件,我们需要创建其cpp文件,我们可以编写代码逻辑。
我发现这个link的教程非常有用。它帮助我找出了我的错误。
它还包含明确的分步信息。
希望这有助于其他正在寻找此类的人。