`

NDK 学习 ndk基础

 
阅读更多

1.安装

1.下载NDK,注意下载的是r4版本

http://dl.google.com/android/ndk/android-ndk-r4b-linux-x86.zip

2.下载完成后解压到某一目录,我的是在

zhangweia@ubuntu:~/android/android-ndk-r4b$pwd
    /home/zhangweia/android/android-ndk-r4b
  zhangweia@ubuntu:~/android/android-ndk-r4b$echo $HOME
    /home/zhangweia

3.配置NDK的环境变量

zhangweia@ubuntu:~/android/android-ndk-r4b$vi ~/.bashrc
在打开的文件末尾添加:

NDK=$HOME/android/android-ndk-r4b/
export NDK

执行下面的命令,保存环境便利,然后查看是否生效:

zhangweia@ubuntu:~/android/android-ndk-r4b$source ~/.bashrc

zhangweia@ubuntu:~/android/android-ndk-r4b$echo $NDK
/home/zhangweia/android/android-ndk-r4b/

4.编译例子。

进入NDK 的例子目录samples/hello-jni,然后在该目录下执行$NDK/ndk-build,编译成功后会在该目录多生成2个子目录libs,obj目录

然后打开eclipse ,添加存在的hello-jni工程 ,运行则


2.HelloNDk

bin/Hello.c

#include <string.h>
#include <jni.h>

/* This is a trivial JNI example where we use a native method
 * to return a new VM String. See the corresponding Java source
 * file located at:
 *
 *   apps/samples/hello-jni/project/src/com/example/hellojni/HelloJni.java
 */
jstring Java_com_su_testjni_HelloJniActivity_stringFromJNI(JNIEnv* env,
		jobject thiz) {
	return (*env)->NewStringUTF(env, "Hello from JNI !");
}

src/HelloJniActivity

/*
 * Copyright (C) 2009 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.su.testjni;

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

public class HelloJniActivity extends Activity {
	/** Called when the activity is first created. */
	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);

		/*
		 * Create a TextView and set its content. the text is retrieved by
		 * calling a native function.
		 */
		TextView tv = new TextView(this);
		tv.setText(stringFromJNI());
		setContentView(tv);
	}

	/*
	 * A native method that is implemented by the 'hello-jni' native library,
	 * which is packaged with this application.
	 */
	public native String stringFromJNI();

	/*
	 * This is another native method declaration that is *not* implemented by
	 * 'hello-jni'. This is simply to show that you can declare as many native
	 * methods in your Java code as you want, their implementation is searched
	 * in the currently loaded native libraries only the first time you call
	 * them.
	 * 
	 * Trying to call this function will result in a
	 * java.lang.UnsatisfiedLinkError exception !
	 */
	public native String unimplementedStringFromJNI();

	/*
	 * this is used to load the 'hello-jni' library on application startup. The
	 * library has already been unpacked into
	 * /data/data/com.example.hellojni/lib/libhello-jni.so at installation time
	 * by the package manager.
	 */
	static {
		System.loadLibrary("hello-jni");
	}
}

Android.mk

# Copyright (C) 2009 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

LOCAL_MODULE    := hello-jni 这里是jni库将来的名字 源码同名就可以
LOCAL_SRC_FILES := hello-jni.c c源码

include $(BUILD_SHARED_LIBRARY)


编译的方法:cd到项目目录 然后ndk-build 就ok


3.java和c之间 数据交换

android.mk:

LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE :=Hello
LOCAL_SRC_FILES :=Hello.c
#liblog.so libGLESv2.so
LOCAL_LDLIBS += -llog //添加log
include $(BUILD_SHARED_LIBRARY)


制作头文件:

cd到bin目录然后javah com.test.testndkdata.DataProvider 含有nativte的方法

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

#ifndef _Included_cn_itcast_ndk3_DataProvider
#define _Included_cn_itcast_ndk3_DataProvider
#ifdef __cplusplus
extern "C" {
#endif
/*
 * Class:     cn_itcast_ndk3_DataProvider
 * Method:    add
 * Signature: (II)I
 */
JNIEXPORT jint JNICALL Java_cn_itcast_ndk3_DataProvider_add__II
  (JNIEnv *, jobject, jint, jint);

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

/*
 * Class:     cn_itcast_ndk3_DataProvider
 * Method:    add
 * Signature: (CC)C
 */
JNIEXPORT jchar JNICALL Java_cn_itcast_ndk3_DataProvider_add__CC
  (JNIEnv *, jobject, jchar, jchar);

/*
 * Class:     cn_itcast_ndk3_DataProvider
 * Method:    sayHelloInC
 * Signature: (Ljava/lang/String;)Ljava/lang/String;
 */
JNIEXPORT jstring JNICALL Java_cn_itcast_ndk3_DataProvider_sayHelloInC
  (JNIEnv *, jobject, jstring);

/*
 * Class:     cn_itcast_ndk3_DataProvider
 * Method:    intMethod
 * Signature: ([I)[I
 */
JNIEXPORT jintArray JNICALL Java_cn_itcast_ndk3_DataProvider_intMethod
  (JNIEnv *, jobject, jintArray);

/*
 * Class:     cn_itcast_ndk3_DataProvider
 * Method:    byteMethod
 * Signature: ([B)[B
 */
JNIEXPORT jbyteArray JNICALL Java_cn_itcast_ndk3_DataProvider_byteMethod
  (JNIEnv *, jobject, jbyteArray);

#ifdef __cplusplus
}
#endif
#endif
然后是c代码:


#include<stdio.h>
#include<jni.h>
#include "cn_itcast_ndk3_DataProvider.h";
#include <android/log.h>
#include<malloc.h>
#define LOG_TAG "System.out.c"
#define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__)
#define LOGI(...) __android_log_print(ANDROID_LOG_INFO, LOG_TAG, __VA_ARGS__)


/**
 * 返回值 char* 这个代表char数组的首地址
 *  Jstring2CStr 把java中的jstring的类型转化成一个c语言中的char 字符串
 */
char*   Jstring2CStr(JNIEnv*   env,   jstring   jstr)
{
	 char*   rtn   =   NULL;
	 jclass   clsstring   =   (*env)->FindClass(env,"java/lang/String"); //String
	 jstring   strencode   =   (*env)->NewStringUTF(env,"GB2312");  // 得到一个java字符串 "GB2312"
	 jmethodID   mid   =   (*env)->GetMethodID(env,clsstring,   "getBytes",   "(Ljava/lang/String;)[B"); //[ String.getBytes("gb2312");
	 jbyteArray   barr=   (jbyteArray)(*env)->CallObjectMethod(env,jstr,mid,strencode); // String .getByte("GB2312");
	 jsize   alen   =   (*env)->GetArrayLength(env,barr); // byte数组的长度
	 jbyte*   ba   =   (*env)->GetByteArrayElements(env,barr,JNI_FALSE);
	 if(alen   >   0)
	 {
	  rtn   =   (char*)malloc(alen+1);         //"\0"
	  memcpy(rtn,ba,alen);
	  rtn[alen]=0;
	 }
	 (*env)->ReleaseByteArrayElements(env,barr,ba,0);  //
	 return rtn;
}


JNIEXPORT jint JNICALL Java_cn_itcast_ndk3_DataProvider_add
  (JNIEnv * env, jobject obj , jint x, jint y){

	LOGD("x=%d",x);
	LOGD("y=%d",y);
	return x+y;


}
JNIEXPORT jstring JNICALL Java_cn_itcast_ndk3_DataProvider_sayHelloInC
  (JNIEnv * env, jobject obj, jstring jstr ){
	//在c语言中 是没有java的String
	char* cstr = Jstring2CStr(env, jstr);
	LOGD("cstr=%s",cstr);
	// c语言中的字符串 都是以'/0' 作为结尾
	char arr[7]= {' ','h','e','l','l','o','\0'};
	strcat(cstr,arr);
	LOGD("new cstr=%s",cstr);
	return (*env)->NewStringUTF(env,cstr);
}

/**env java 虚拟机 结构体c实现的指针 包含的有很多jni方法
 *jobject obj 代表的是调用这个c代码的java对象 代表的是DataProider的对象
 */

JNIEXPORT jintArray JNICALL Java_cn_itcast_ndk3_DataProvider_intMethod
  (JNIEnv * env , jobject obj , jintArray arr){
	//1.知道数组的长度
	//2.操作这个数组里面的每一个元素
	int len = (*env)->GetArrayLength(env,arr);
	LOGD("shuzu len =%d",len);
	//    jint*       (*GetIntArrayElements)(JNIEnv*, jintArray, jboolean*);
	jint* intarr = (*env)->GetIntArrayElements(env,arr,1);
	int i =0; //c99
	for(;i<len;i++){
		//*(intarr+i) += 10;

		LOGD("intarr[%d]=%d", i, intarr[i]);

		intarr[i]+= 10;
	}
//    void        (*ReleaseIntArrayElements)(JNIEnv*, jintArray,
//                        jint*, jint);
//

//	(*env)->ReleaseIntArrayElements(env,arr,intarr,0); // c语言释放掉 刚才申请的内存空间
	return arr;
}

/**
 * 代表的是调用c代码 的class类
 * jclass DataProvider  类
 */

JNIEXPORT jint JNICALL Java_cn_itcast_ndk3_DataProvider_sub
  (JNIEnv * env, jclass clazz, jint x, jint y){
	LOGD("x=%d",x);
	LOGD("y=%d",y);
	return x-y;


}










然后是dataprovider代码

package com.test.testndkdata;


import android.R.integer;


public class DataProvider {
	public native int add(int a, int b);


	public native String sayHello(String s);


	public native int[] ints(int[] nums);


}


所有代码


http://dl.vmall.com/c0hivk447p





分享到:
评论

相关推荐

    NDK学习篇创建

    本篇文章将深入探讨NDK学习,包括其安装、配置、以及如何在Android Studio项目中使用NDK进行开发。 首先,我们需要了解NDK的基本概念。NDK是一组工具,包括编译器、链接器和其他工具,用于将原生代码编译为可以在...

    android-ndk 学习笔记

    3. 机器学习:深度学习框架如TensorFlow Lite,其核心库是用C++编写的,可以通过NDK在Android上运行。 总结,Android NDK是Android开发中的一个重要工具,它扩展了Android应用的开发范围,使得开发者能够利用C/C++...

    NDK学习总结

    3. **性能优化**:对于计算密集型任务,如图像处理、机器学习算法,使用NDK可以提升性能。 4. **硬件访问**:直接操作硬件组件,如GPIO、SPI等,需要使用NDK和JNI来调用底层驱动。 总的来说,NDK在Android开发中...

    jni-ndk学习+ue+source+图片

    在这个“jni-ndk学习+ue+source+图片”资料包中,我们看到涉及到的方面包括JNI和NDK的学习资源,可能的源代码示例,以及与Unreal Engine(UE)相关的内容。 1. **JNI基础**:JNI是Java平台中的桥梁,它使得Java代码...

    NDK JNI的学习

    - Java数据类型与JNI数据类型的对应关系是学习JNI的基础,例如,`int`在JNI中对应`jint`,`String`对应`jstring`,对象数组对应` jobjectArray`等。 - JNI提供了丰富的函数用于在Java和C/C++之间传递数据,如`Get...

    【NDK学习第二章】如何在自己的项目中使用NDK

    在Android开发中,NDK(Native Development Kit)是一个重要的工具集,它允许开发者使用C/C++等原生代码编写部分应用程序,从而实现性能优化、利用硬件加速或访问特定的底层库。本篇将深入探讨如何在自己的项目中...

    Android NDK基础开发

    - NDK允许直接访问GPU和其他硬件加速功能,例如OpenCV、OpenGL ES等,对于图像处理、机器学习等场景特别有用。 8. **安全和隐私**: - 本地代码可能有助于保护敏感算法,避免Java层的反编译,但也可能导致缓冲区...

    【NDK学习第一章】windows上ndk开发环境搭建,编译运行NDK自带的代码示例

    1. **性能需求高**:C/C++代码通常比Java更高效,对于计算密集型或图形密集型应用,如游戏引擎、机器学习库等,使用NDK可以显著提升性能。 2. **利用已有的C/C++库**:如果应用需要集成已有的C/C++库,NDK提供了与...

    Android NDK 的学习之旅 - 数据传输

    在Android开发中,NDK(Native Development Kit)是一个重要的组件,它允许开发者使用C和C++原生代码来编写部分应用程序,从而实现高性能计算和低级硬件交互。本篇文章将聚焦于Android NDK在数据传输方面的应用,...

    NDK与JNI基础演示源码

    总的来说,这个项目涵盖了JNI和NDK的基础,从创建本地方法、加载库、到处理异常和内存管理,是学习和实践Android本地开发的宝贵资源。通过深入研究源代码,开发者可以更好地理解和掌握如何在Android应用中有效地使用...

    AndroidNDK初次学习工程

    在“Android NDK初次学习工程”中,我们将探讨如何使用NDK来实现简单的加减乘除功能,并将其集成到Android应用中。 首先,理解NDK的基础概念很重要。NDK提供了一个环境,让开发者可以编译C/C++代码并生成原生库(....

    android-ndk(android-ndk-r25b-linux.zip)

    Android NDK,全称为Native Development Kit,是Google提供的一款用于Android平台的C和C++库开发工具集。这个“android-ndk-r25b-...然而,使用NDK也需要开发者具备C/C++编程基础,以及对JNI和Android系统架构的理解。

    android-ndk(android-ndk-r23b-linux.zip)

    - **示例和文档**:帮助开发者理解和学习如何使用NDK。 安装和使用NDK时,开发者通常需要配置环境变量,指向NDK的安装目录,然后使用提供的工具进行编译。在Android Studio中,可以通过集成的NDK支持进行更方便的...

    android-ndk(android-ndk-r25b-windows.zip)

    Android NDK,全称为Native Development Kit,是Google提供的一款用于Android平台的C和C++开发工具集。这个压缩包“android-ndk-r25b-windows.zip”包含了NDK的第25个版本,专为Windows操作系统设计。NDK的主要功能...

    AndroidNDK学习笔记.pdf

    AndroidNDK学习笔记.pdf

    NDK Google android ndk

    ### Android NDK详解 #### 一、Android NDK概述 Android NDK(Native Development Kit)是一组工具集合,旨在让Android应用开发者能够将C或C++编写的原生代码集成到其应用程序中。这一功能对于那些希望利用底层...

    android-ndk(android-ndk-r23b-windows.zip)

    Android NDK,全称为Native Development Kit,是Google提供的一款用于Android平台的C/C++开发工具集。这个"android-ndk-r23b-windows.zip"压缩包包含了NDK的第23个版本,专为Windows操作系统设计。NDK是Android应用...

    android-ndk(android-ndk-r25b-darwin.zip)

    总的来说,Android NDK是Android开发中的一个重要工具,它为开发者提供了更多的灵活性和性能提升的可能性,同时也带来了更多复杂性,需要开发者有扎实的C/C++基础和对Android系统内部机制的理解。

Global site tag (gtag.js) - Google Analytics