Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android - Android調用JNI方法 及 代碼

Android - Android調用JNI方法 及 代碼

編輯:關於Android編程

Android調用JNI方法 及 代碼

 

JNI: Java Native Interface, 實現Java和C/C++的互通.

 

Android上使用JNI的方法. 時間:2014.9.3

 

環境: 必須使用標准Eclipse, 安裝Android的環境, 才可以使用NDT插件.

Eclipse Standard/SDK Version: Luna Release (4.4.0);

Android: ADT-23.0.3.zip; NDT: GNU Make 3.81;

基礎安裝略過.

 

方法:

1. 創建接口類:

首先新建JNI的接口類, 包含使用的靜態方法. 位置: 項目->src->[package]->JniClient.java

/

 

/**
 * 
 */
package com.example.hellomyjni;

/**
 * @author Administrator
 *
 */
public class JniClient {
	static public native String sayName();
}

2. 編譯接口類:

 

進入項目文件夾, 生成JNI的頭文件, 使用命令:

javah -classpath bin/classes -d jni com.example.hellomyjni.JniClient

命令解析:

javah 生成頭文件;

-classpath 使用類的位置(bin/classes), 都是.class文件;

-d jni 需要生成JNI的類(com.example.hellomyjni.JniClient), 包括[package].[classname].

/

F5刷新項目, 項目會自動生成jni文件夾, 並包含一個頭文件com_example_hellomyjni_JniClient.h.

/

 

/* DO NOT EDIT THIS FILE - it is machine generated */
#include 
/* Header for class com_example_hellomyjni_JniClient */

#ifndef _Included_com_example_hellomyjni_JniClient
#define _Included_com_example_hellomyjni_JniClient
#ifdef __cplusplus
extern C {
#endif
/*
 * Class:     com_example_hellomyjni_JniClient
 * Method:    sayName
 * Signature: ()Ljava/lang/String;
 */
JNIEXPORT jstring JNICALL Java_com_example_hellomyjni_JniClient_sayName
  (JNIEnv *, jclass);

#ifdef __cplusplus
}
#endif
#endif

3. 配置Android項目的NativeSupport.

 

右鍵點擊項目在Android Tools裡面點擊Add NativeSupport, 就會自動生成: HelloMyJni.cpp和Android.mk.

/

Android.mk不需要修改:

 

LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

LOCAL_MODULE    := HelloMyJni
LOCAL_SRC_FILES := HelloMyJni.cpp

include $(BUILD_SHARED_LIBRARY)

HelloMyJni.cpp需要修改.

 

 

4. 添加需要的函數

即修改HelloMyJni.cpp.

首先, 添加頭文件, 即JNI生成的頭文件, #include com_example_hellomyjni_JniClient.h; 此時頭文件的報錯消失.

其次, 復制JNIEXPORT函數, 並填寫參數名稱.

在函數寫程序, 並調用其他C++程序. 注意的是此時的編譯環境自動為C++.

#include 

#include com_example_hellomyjni_JniClient.h

JNIEXPORT jstring JNICALL Java_com_example_hellomyjni_JniClient_sayName
  (JNIEnv *env, jclass) {
	return env->NewStringUTF(I'm Spike!);
}

 

5. 修改主程序.

默認為輸出為HelloWorld.

在res->layout->activity_main.xml中, 為TextView添加id, 則可以調用, 如android:id=@+id/text_view. 其他不做修改.

 



    



在主程序中, src->[package]->MainActivity.java,

 

首先修改輸出字符, 即重新指定字符:

 

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		TextView tv = (TextView) findViewById(R.id.text_view);
		tv.setText(JniClient.sayName());
		
	}

其次, 添加庫的引用, 引用名字就是Add NativeSupport時填寫的類名, 默認與項目名稱相同.

 

 

	static {
		System.loadLibrary(HelloMyJni);
	}

其余不需要修改.

 

 

全部:

 

package com.example.hellomyjni;

import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.TextView;

public class MainActivity extends Activity {

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		TextView tv = (TextView) findViewById(R.id.text_view);
		tv.setText(JniClient.sayName());
		
	}

	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		// Inflate the menu; this adds items to the action bar if it is present.
		getMenuInflater().inflate(R.menu.main, menu);
		return true;
	}

	@Override
	public boolean onOptionsItemSelected(MenuItem item) {
		// Handle action bar item clicks here. The action bar will
		// automatically handle clicks on the Home/Up button, so long
		// as you specify a parent activity in AndroidManifest.xml.
		int id = item.getItemId();
		if (id == R.id.action_settings) {
			return true;
		}
		return super.onOptionsItemSelected(item);
	}
	
	static {
		System.loadLibrary(HelloMyJni);
	}
}

6. 編譯.

 

此時項目應該沒有任何錯誤和警告. 輸出:

/

 

 

 

 

 

 

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved