赞
踩
注意:Android.mk里有一行include $(CLEAR_VARS)
必须把LOCAL_LDLIBS :=-llog放在它后面才有用, 否则相当于没写。
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := helloWorld
LOCAL_SRC_FILES := helloWorld.cpp
LOCAL_LDLIBS :=-llog
include $(BUILD_SHARED_LIBRARY)
在你使用的 .c/ .cpp 文件中导入 log.h 头文件
#include<Android/log.h>
先定义一个全局变量,再定义一些输出的LOG函数:
- #define TAG "android_jni" // 这个是自定义的LOG的标识
- #define LOGI(...) __android_log_print(ANDROID_LOG_INFO,TAG ,__VA_ARGS__) // 定义LOGI类型
- /* 其它标示同上 */
- #include <jni.h>
- #include <string.h>
- #include <android/log.h>
-
- #define TAG "myhello-jni-test" // 这个是自定义的LOG的标识
- #define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG,TAG,__VA_ARGS__) // 定义LOGD类型
-
- using namespace std;
-
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- /*
- * Class: com_example_hellojni_HelloWorld
- * Method: getNewString
- * Signature: (Ljava/lang/String;)Ljava/lang/String;
- */
- JNIEXPORT jstring JNICALL Java_com_example_hellojni_HelloWorld_getNewString
- (JNIEnv *env, jobject jobj, jstring jstr) {
-
- const char * c_javaName = env->GetStringUTFChars(jstr , NULL); //转换为 char *类型
- string str_name = c_javaName;
- cout << "the name from java is " << c_javaName << endl ; //输出显示
- LOGI("the name from java is %s", c_javaName);
-
- jstring resStr = env->NewStringUTF(c_javaName); //构造一个jstring对象
-
- return resStr;
- }
- #ifdef __cplusplus<span style="font-size:14px;"><strong><span style="font-family:Arial;"><span style="line-height: 26px;">
- </span></span></strong></span>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。