我无法让我的Nexus S(运行Android 4.0)将本机stdout消息重定向到logcat。我读过我需要这样做:
$ adb shell stop
$ adb shell setprop log.redirect-stdio true
$ adb shell start
但是,这似乎不起作用。 (它确实打破了JUnit,如上所述here,所以它并非没有效果。)
供参考,这是我的代码:
package com.mayastudios;
import android.util.Log;
public class JniTester {
public static void test() {
Log.e("---------", "Start of test");
System.err.println("This message comes from Java.");
void printCMessage();
Log.e("---------", "End of test");
}
private static native int printCMessage();
static {
System.loadLibrary("jni_test");
}
}
和JNI .c文件:
JNIEXPORT void JNICALL
Java_com_mayastudios_JniTester_printCMessage(JNIEnv *env, jclass cls) {
setvbuf(stdout, NULL, _IONBF, 0);
printf("This message comes from C (JNI).\n");
fflush(stdout);
//setvbuf(stderr, NULL, _IONBF, 0);
//fprintf(stderr, "This message comes from C (JNI).\n");
//fflush(stderr);
}
Android.mk:
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := jni_test
LOCAL_SRC_FILES := test_jni.c
include $(BUILD_SHARED_LIBRARY)
我正在通过调用ndk-build
来编译它。原生方法被正确调用,但我没有得到任何日志输出(即使在详细)。我确实从Java获得了日志输出(“此消息来自Java。”)。
我可能做错了什么提示?
PS:我已经设置了一个小型的Mercurial存储库来演示这个问题:https://bitbucket.org/skrysmanski/android-ndk-log-output/
答案 0 :(得分:18)
从以前的答案来看,这对我来说并不明显。即使在root设备上,您也需要运行:
adb root
adb shell stop
adb shell setprop log.redirect-stdio true
adb shell start
答案 1 :(得分:10)
您还应该能够包装您的日志代码以检测它是否是Android,如果是,则使用Android的日志记录。这可能对每个人都适用,也可能不实用。
包含日志头文件:
#include <android/log.h>
使用内置日志记录功能:
__android_log_print(ANDROID_LOG_INFO, "foo", "Error: %s", foobar);
答案 2 :(得分:9)
setprop log.redirect-stdio true
redirects only output generated by java code, but not the native code. This fact is described on developer.android.com in following way:
By default, the Android system sends stdout and stderr (System.out and System.err) output to /dev/null. In processes that run the Dalvik VM, you can have the system write a copy of the output to the log file.
To get output from the native code, I really liked this solution
答案 3 :(得分:7)
stdout / stderr被重定向到Android应用中的/dev/null
。 setprop解决方法是root用户设备的hack,它将stdout / stderr复制到日志中。请参阅Android Native Code Debugging。
答案 4 :(得分:4)
这里我用来将stdout和stderr输出到android日志的代码
#include <android/log.h>
#include <pthread.h>
#include <unistd.h>
static int pfd[2];
static pthread_t loggingThread;
static const char *LOG_TAG = "YOU APP LOG TAG";
static void *loggingFunction(void*) {
ssize_t readSize;
char buf[128];
while((readSize = read(pfd[0], buf, sizeof buf - 1)) > 0) {
if(buf[readSize - 1] == '\n') {
--readSize;
}
buf[readSize] = 0; // add null-terminator
__android_log_write(ANDROID_LOG_DEBUG, LOG_TAG, buf); // Set any log level you want
}
return 0;
}
static int runLoggingThread() { // run this function to redirect your output to android log
setvbuf(stdout, 0, _IOLBF, 0); // make stdout line-buffered
setvbuf(stderr, 0, _IONBF, 0); // make stderr unbuffered
/* create the pipe and redirect stdout and stderr */
pipe(pfd);
dup2(pfd[1], 1);
dup2(pfd[1], 2);
/* spawn the logging thread */
if(pthread_create(&loggingThread, 0, loggingFunction, 0) == -1) {
return -1;
}
pthread_detach(loggingThread);
return 0;
}
答案 5 :(得分:-1)
尝试将fflush(stdout);
放在printf之后。或者使用fprintf(stderr, "This message comes from C (JNI).\n")
;
默认情况下,stdout是缓冲。 stderr - 不是。你使用的是System.err,而不是Java的System.out。
你也可以用这个来禁用stdout缓冲:setvbuf(stdout, NULL, _IONBF, 0);
只需确保在第一次printf调用之前调用它。