我需要将所有程序输出写入文本文件。我相信它是这样做的,
sOutFile << stdout;
其中sOutFile是创建文件的ofstream对象:
sOutFile("CreateAFile.txt" ); // CreateAFile.txt is created.
当我将stdout插入sOutFile对象时,我得到的代码似乎类似于 octal [hexadecimal]代码或我创建的文本文件中的某种地址。
0x77c5fca0
但令我困惑的是,在我的程序中,我多次使用cout。主要是文字陈述。如果我没弄错,那就是程序输出。
如果此代码是地址,它是否包含我的所有输出?我可以把它读回到程序中并找到答案吗?
如何将我的所有程序输出写入文本文件?
答案 0 :(得分:15)
如果您的程序已经使用cout / printf并且您想要将当前输出的所有内容发送到文件,则可以在现有调用之前将stdout重定向到指向文件: http://support.microsoft.com/kb/58667
相关守则:
freopen( "file.txt", "w", stdout );
cout << "hello file world\n"; // goes to file.txt
freopen("CON", "w", stdout);
printf("Hello again, console\n"); // redirected back to the console
或者,如果您只想要将某些内容打印到文件中,您只需要一个常规文件输出流:http://www.cplusplus.com/doc/tutorial/files.html
相关守则:
ofstream myfile;
myfile.open("file.txt");
myfile << "Hello file world.\n";
printf("Hello console.\n");
myfile.close();
编辑以汇总John T和Brian Bondy的答案:
最后,如果您是从命令行运行它,则可以使用重定向运算符“&gt;”将输出重定向为其他所有人提及的内容。或附加“&gt;&gt;”:
myProg > stdout.txt 2> stderr.txt
答案 1 :(得分:9)
您可以使用std::freopen
重定向stdout,stderr和stdin。
从以上链接:
/* freopen example: redirecting stdout */
#include <stdio.h>
int main ()
{
freopen ("myfile.txt","w",stdout);
printf ("This sentence is redirected to a file.");
fclose (stdout);
return 0;
}
您也可以通过命令提示符运行您的程序,如下所示:
a.exe > stdout.txt 2> stderr.txt
答案 2 :(得分:6)
如果您想要文本文件中的所有输出,则无需编写任何额外的代码。
从命令行:
program > output.txt
如果您只想重定向某些输出,可以使用ostream作为Dirkgently建议。
答案 3 :(得分:3)
然后你不能在其他任何地方使用std :: cout来打印程序中的东西。将std :: cout更改为std :: ostream,然后根据需要传递文件或std :: cout。
答案 4 :(得分:3)
sOutFile << stdout;
C中的“stdout
”被定义为FILE*
变量。它只是一个指针。将它输出到文件只会将指针的值(0x77c5fca0
)写入文件中。
如果要将输出定向到文件,请先将文件写入文件,或使用命令行将程序输出重定向到文件。