android ndk logcat,在Android NDK中将stdout重定向到logcat
我无法让我的Nexus S(运行Android 4.0)重定向本地stdout消息到logcat。我读过,我需要这样做:$ adb shell stop$ adb shell setprop log.redirect-stdio true$ adb shell start然而,这似乎不工作。 (它打破JUnit虽然,如提到here,所以它不是没有效果。)供参考,这里是我的代码:package co
我无法让我的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。”)。
任何提示我可能会做错了什么?
更多推荐
所有评论(0)