android支援使用NDK開發C程式,關於配置NDK環境問題應該不用再贅述了,這個網上有很多,這裡通過一篇執行個體來講述簡單的JNI開發,大家可以參考這篇文章(Get Your Eclipse-Integrated NDK On!)搭建Eclipse編譯C語言為so檔案的開發環境。
native方法實現步驟如下:
1、在Java中聲明native()方法,然後編譯(javac);
2、用javah產生一個.h檔案;
3、編寫包含.h檔案的c檔案
4、編譯c檔案
5、使用編譯成功的so檔案。
第一步:
1、聲明native方法
public class Printf_Jni { static { System.loadLibrary("com_nedu_jni_helloword_printf-jni"); }public native void printHello();}
2、javac編譯
進入java檔案所在路徑,調用javac命令,
第二步:使用javah命令產生.h標頭檔,
這個要回到src目錄下,不知道什麼原因,如果在上面的javac路徑下會報錯,
使用javah命令產生的標頭檔如下:
/* DO NOT EDIT THIS FILE - it is machine generated */#include <jni.h>/* Header for class com_nedu_jni_helloword_Printf_Jni */#ifndef _Included_com_nedu_jni_helloword_Printf_Jni#define _Included_com_nedu_jni_helloword_Printf_Jni#ifdef __cplusplusextern "C" {#endif/* * Class: com_nedu_jni_helloword_Printf_Jni * Method: printHello * Signature: ()V */JNIEXPORT void JNICALL Java_com_nedu_jni_helloword_Printf_1Jni_printHello (JNIEnv *, jobject);#ifdef __cplusplus}#endif#endif
第三步:編寫c檔案,代碼如下:
#include<stdio.h> #include <stdlib.h> #include "com_nedu_jni_helloword_Printf_Jni.h" JNIEXPORT void JNICALL Java_com_nedu_jni_helloword_Printf_1Jni_printHello (JNIEnv *e, jobject j) { printf("Hello world!"); }
第四步,書寫Android.mk檔案,編譯c檔案
Android.mk檔案如下:
LOCAL_PATH := $(call my-dir)include $(CLEAR_VARS)LOCAL_MODULE := com_nedu_jni_helloword_printf-jniLOCAL_SRC_FILES :=Printf_Jni.cinclude $(BUILD_SHARED_LIBRARY)
LOCAL_MODULE := com_nedu_jni_helloword_printf-jniLOCAL_MODULE := com_nedu_jni_helloword_printf-jniLOCAL_MODULE 表示so檔案名稱
LOCAL_SRC_FILES 需要編譯的檔案
按照這篇文章(Get Your Eclipse-Integrated NDK On!)的介紹就可以在Eclipse編譯了。
第五步:使用so檔案:
通過下面的代碼載入so檔案
System.loadLibrary("com_nedu_jni_helloword_printf-jni");
通過下面的代碼載入so檔案通過下面的代碼載入so檔案
調用如下:
Printf_Jni print=new Printf_Jni();
print.printHello();
/**
* @author 張興業
* 郵箱:xy-zhang#163.com
* android開發進階群:278401545
*
*/