- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试使用 freopen 将标准输出打印到文件,但下面的代码崩溃了。我正在检查 NULL,并且我相当确定我在程序的其他地方没有段错误,因为我验证了我所有的 mallocs 都是正确的。
程序在到达 fclose(stdout)
时崩溃并且不打印我附加的错误消息以检查它。 printf("\nTestBeforeClose");
行打印但 printf("\nTestAfterClose");
不打印。
int printAllVarRedir(char * filename, int redirmarker) {
var *current = NULL;
if (redirmarker == 1) {
if (freopen(filename, "w", stdout) == NULL) {
perror("Unable to open file");
return 1;
} else {
if (head == NULL) {
perror("No Variables");
fclose(stdout);
return 1;
} else {
current = head;
printf("%s=%s. Address is %p.Next is:%p\n", current->varname, current->value, current, current->next);
while (current->next != NULL) {
current = current->next;
printf("%s=%s. Address is %p.Next is:%p\n", current->varname, current->value, current,
current->next);
}
printf("\nTestBeforeClose");
if (fclose(stdout) == EOF) {
printf("\nError is %s\n", strerror(errno));
}
printf("\nTestAfterClose\n");
return 0;
}
}
}
}
这是我正在使用的 var 结构:
typedef struct varlist{
char * varname;
char * value;
struct varlist * next;
}var;
var * head = NULL;
最佳答案
当然 printf("\nTestAfterClose\n");
不会打印。 printf
打印到您刚刚关闭的 stdout
。
关于c - fclose(stdout) 在使用 freopen 时即使在 NULL 检查后也会导致崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49901957/
编辑:我已经成功缩小了问题范围,但对我来说仍然没有多大意义。我的代码变成8行: int savedOut = dup(1); printf("Changing the outstream to p
我是 C++ 的初学者,我有一个超出我能力范围的问题。我在 GNU GCC 下编译。我用 #include 也称为: #include 在我的程序中的某个时刻,我告诉程序使用文件 de_facut.t
知道为什么会这样: #include #include int nrpart; int k; void main() { printf("lol"); freopen("p2.in
我正在使用我的共享库将 freopen 用于 GUI 应用程序,这样我就可以将调试消息从 stdout 重定向到一个文件 我一直在使用基于 C++ 引用站点片段的代码: /* freopen exam
我正在编写一个 Qt GUI 应用程序(用于进行 XSL 转换)。要将错误消息打印到文件,我正在使用如下调用: freopen("my-error-file.txt", "w", stderr); /
给定以下函数: freopen("file.txt","w",stdout); 将 stdout 重定向到一个文件中,如何使 stdout 重定向回控制台? 我会注意到,是的,还有其他类似的问题,但是
我在执行 2 个连续的 freopen 时遇到错误,file1 包含偶数个整数 int x, y; freopen("file1", "r", stdin); while (cin >> x) {
我正在尝试使用文件重定向 stdout 和 stderr 的输出。我正在使用 freopen,它会在正确的目录中创建文件,但文件是空白的。当我注释掉重定向 stdout 和 stderr 的代码时 -
试图implement freopen() ,据我所知,我在标准中找到了一条实际上没有指定任何内容的规范。 所以... freopen()将关闭流(忽略错误),清除其错误和 EOF 标志,重置宽方向,
我有一个程序,该程序获取两个路径作为命令行参数。第一个参数(实际上是第二个参数,因为第一个是命令名称本身)是程序从中读取文件(输入文件)的路径。第二个是程序写入的文件(输出文件)的路径。 int ma
目前,这是我创建的代码,但我似乎找不到其背后的问题。我正在编写一个加密程序 int countWords(FILE *f){ int count = 0; char ch; whil
我正在尝试使用 freopen 写入子目录内的文件: freopen("output/output-1.txt", "w", stdout); 我尝试将其更改为输出到当前目录并且它有效。当目标输出文件
我有一堆批处理文件,用程序 A 做这样的事情: A > log.txt ; grep 'result:' log.txt > result.txt || raise_hell.sh 我想做的是修改 A
我正在尝试创建一个文件,其名称是一个字符串常量,但是一个由常量字符串“List”组成的字符串,一个整数++ 一个扩展名。这是我的代码: #include #include #include #i
来自 In multi thread application how can i redirect stderr & stdout in separate file as per thread? 的扩
这是 How to capture output of printf? 的后续行动- 特别是 jxh 的回答。 我在 Viesturs 在 2018 年的答案中遇到了同样的问题。有人建议他打开一个新问
freopen 的签名是FILE * freopen (const char * filename, const char * mode, FILE * stream) 根据文档,返回值与 strea
我尝试编译并运行具有以下几行的 C 代码: FILE *preproc_producer = NULL; preproc_producer = tmpfile(); // preproc_produc
你好,我想知道在我调用之后我们如何再次从 stdin 获取输入: freopen("Smefile.txt","r",stdin); 准确地说,我希望我的程序的第一个部分应该从指定的文件中获取输入,下
我尝试使用以下命令从标准输出重定向我的 C++ 程序中的输出: freopen(cmd.c_str(),"w",stdout); 然后调用system执行cmd。我也尝试过 fork 然后调用
我是一名优秀的程序员,十分优秀!