赞
踩
一、在jni中c++层进行log的打印
1、在需要使用log的cpp文件中加入
#include <android/log.h>
2、在需要打印的地方直接调用
-
- __android_log_print(ANDROID_LOG_INFO,"test","value is %d\n",a);
二、常用日志函数
android/log.h头文件也声明了一系列函数,这些函数主要用于原生代码生成日志消息。
1、 _android_log_write:可用于生成一个简单的字符串作为日志信息
_android_log_write(ANDROID_LOG_WARN,"hello-jni","warning log.");
2、 _android_log_print:可以用于生成一个格式化字符串作为日志消息。
_android_log_print(ANDROID_LOG_ERROR,"hello-jni","Failed with errno%d",erron);
3、 _android_log_vprint:除了参数传递方式外,其他功能与_android_log_print完全相同,_android_log_vprint函数用va_list传递附加参数,而_android_log_print函数中已连续参数的方式改为传递参数。
- va_list args;
- va_start(args,format);
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。