標籤:
網上看了很多文章,有的太老了,有的不說的不是很清楚,這個一步一步開始使用android JNI 方法
參考:http://bbs.51cto.com/thread-948244-1.html###
http://www.cnblogs.com/kissazi2/p/3298884.html
使用GNUStep作為C/C++編譯器,選擇這個的原因是,編譯器小,很快就下載完成
(一)下載安裝編譯環境
1.開啟網站 http://www.gnustep.org/
進入後,下載安裝,從上到下的順序安裝就行了
安裝成功後啟動shell,方法
開啟GNUstep->Shell,輸入make -v 和 gcc -v命令,驗證是否安裝成功
下載DNK 我下載的地址是:https://dl.google.com/android/ndk/android-ndk64-r10-windows-x86.zip
看文章 http://www.cnblogs.com/yaotong/archive/2011/01/25/1943615.html 上面有很多原生地址
google的地址是打不開的,但是可以直接下載,真是感謝啊!呵呵!
注意:下載下來後解壓遇到說檔案重複是否覆蓋,我選擇的是覆蓋,小寫名字覆蓋大寫名字;(這裡沒做深入研究,只看了一下兩個檔案)
配置ndk環境變數,gnustep是類比linux的環境的,開啟gnustep的安裝目錄下的D:\GNUstep\GNUstep\GNUstep.conf檔案,添加以下內容:
複製內容到剪貼簿NDK=/d/android-ndk64-r10-windows-x86/android-ndk-r10
export=NDK
NDK的位置就是你下載後解壓好,放的位置:
說明如果不知道ndk目錄在linux下應該是在哪裡,你可以開啟gnustep的命令視窗,輸入mount,就可以找到對應的盤符。
到此環境部署完成
(二)建立工程,寫例子代碼
1.建立工程com.example.test4;
添加 類JniTest
package com.example.test4;public class JniTest { public native final String init(); public native final void init2(int a,int b);}// main 中的代碼public class MainActivity extends Activity { static{ System.loadLibrary("JniTest"); } @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); JniTest jniTest = new JniTest(); String s = jniTest.init(); }}
2.開始-運行-cmd,到工程目錄
使用cmd :F:\workspace2\test4>javah -classpath ./src -d ./jni -jni com.example.test4.JniTest
-classpath <路徑> 用於裝入類的路徑-d <目錄> 輸出目錄-jni 產生 JNI樣式的標頭檔(預設)
手動添加 com_example_test4_JniTest.c 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 := JniTestLOCAL_SRC_FILES := com_example_test4_JniTest.cinclude $(BUILD_SHARED_LIBRARY)
// 這裡只實現了一個介面
#include <string.h>#include <jni.h>#include "com_example_test4_JniTest.h"jstringJava_com_example_test4_JniTest_init (JNIEnv* env, jobject thiz){ return (*env)->NewStringUTF(env, "我的測試JIN介面");}
其中你只需要該LOCAL_MODULE和LOCAL_SRC_FILES就可以了。
說明:LOCAL_MODULE是描述模組的,用來給java調用的模組名,會產生對應的libtestJni.so
LOCAL_SRC_FILES就是源檔案啦,多個檔案空格隔開即可。
接下來,我們要開始編譯產生so檔案咯。
開啟gnustep的命令視窗,進入到項目底下,輸入$NDK/ndk-build命令,即可自動產生libs/armeabi/libtestJni.so檔案。
F5重新整理工程
F11debug Eclipse test4工程,可以看到MainActivity中的調用 String s = jniTest.init(); 就是在c檔案中寫的字串
(3)自動編譯
直接從http://bbs.51cto.com/thread-948244-1.html### 中cp 過來了
右擊jni工程的properties-->Builders-->NEW -->;Program 可以看到以下內容:
argument:--login -c "cd /e/myWorkSpace/android/hellJni && $NDK/ndk-build"
切換到Refresh 標籤頁
切換到Build Options標籤頁
這樣就完成了配置,點擊確定可看到控制台自動編譯器了
著作權聲明:本文為博主原創文章,未經博主允許不得轉載。
windows android JNI 使用和環境搭建