我创建了一个NDK应用程序,它成功完成了以下任务:
#include <string.h>
#include <stdio.h>
#include <android/log.h>
JNIEXPORT jstring JNICALL Java_my_package_NativeAccess_stringFromJNI(
JNIEnv* env, jobject thiz) {
char* str = "Native Code!";
FILE* file = fopen("sdcard/hello.txt","w+");
if (file == NULL) {
file = fopen("mnt/sdcard/hello.txt","w+");
if (file == NULL) {
file = fopen("storage/sdcard/hello.txt","w+");
}
}
if (file == NULL) {
str = "Native Code! fopen() did not work!";
__android_log_write(ANDROID_LOG_ERROR, "AAAAAAAA", "file null!");
}
else{
str = "Native Code! fopen() worked!";
__android_log_write(ANDROID_LOG_ERROR, "AAAAAAAA", "file exists!");
fputs("HELLO WORLD!\n", file);
fflush(file);
fclose(file);
}
return (*env)->NewStringUTF(env, str);
}
我在自定义构建的源代码中启动应用程序。这是最新的KitKat版本。我只改变了
/bionic/libc/upstream-freebsd/lib/libc/stdio/fopen.c
以下列方式:
FILE *
fopen(const char *file, const char *mode)
{
//====================
fputs ("XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX\n", stdout);
int uid = getuid();
int pid = getpid();
int ppid = getppid();
fprintf(stdout, "uid = %d", uid);
fputs ("\n", stdout);
fprintf(stdout, "pid = %d", pid);
fputs ("\n", stdout);
fprintf(stdout, "ppid = %d", ppid);
fputs ("\n", stdout);
fputs ("XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX\n", stdout);
//====================
// ... the usual fopen continues here
}
使用自定义构建的Android源启动模拟器时,我只通过LogCat获得以下输出:
01-15 06:18:18.400: I/stdout(1417): XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
01-15 06:18:18.400: I/stdout(1417): uid = 1001
01-15 06:18:18.400: I/stdout(1417): pid = 1417
01-15 06:18:18.400: I/stdout(1417): ppid = 1217
01-15 06:18:18.400: I/stdout(1417): XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
做的时候
adb shell ps
我得到了
USER PID PPID VSIZE RSS WCHAN PC NAME
...
root 1217 1 205812 40176 ffffffff b6f395ec S zygote
...
radio 1417 1217 238984 25788 ffffffff b6f3a650 S com.android.phone
...
u0_a1 1697 1217 217744 20236 ffffffff b6f3a650 S com.android.providers.calendar
uid 1001
(== USER u0_a1)因此不是我的应用。
我的应用有了10055
:
$ adb shell dumpsys package my.package | grep userId=
userId=10055 gids=[3003, 1028, 1015]
我的问题是:为什么我的本地fopen调用没有被记录,但系统内部调用会被记录?
谢谢!
答案 0 :(得分:0)
对于系统进程,stdout / stderr不会被重定向到logcat,即你发送的任何内容都会丢失(从技术上讲是/ dev / null),这就是你什么也看不见的原因。