使用ofstream将控制台输出重定向到文件C ++的末尾

时间:2016-03-10 17:08:33

标签: c++ ofstream tcpdump

我想使用ofstream从缓冲区添加新的输出到文件rst.txt的末尾。 我的问题是每个新条目都会删除文件包含。

 #include <iostream>
    #include <sstream>
    #include <stdio.h>
    #include <fstream>

    using namespace std;

    int main()
    {
        FILE *in;


        char buff[512];




        while(1)
        {
            //if(!(in = popen("tcpdump -i wlan0 -e -c 1 -vvv /home/pi/wifi", "r")))
            if(!(in = popen(" sudo tcpdump -i wlan0 -e -c 1 'type mgt subtype probe-req' -vvv", "r")))
                return 1;

            fgets(buff, sizeof(buff), in);

            pclose(in);

            std::istringstream iss;

            iss.str(buff);

            std::string mac_address;
            std::string signal_strength;

            std::string info;
            while(iss >> info)
            {
        if( info.find("SA") != std::string::npos )
                    mac_address = info.substr(3);

                if( info.find("dB") != std::string::npos )
                    signal_strength = info;


            }
            ofstream file;
            file.open("rst.txt");
            streambuf* sbuf=cout.rdbuf();
            cout.rdbuf(file.rdbuf());
            cout<<"file"<< endl;

            cout << "      ADRESSE MAC     : " << mac_address << "     " ;
            cout << "      SIGNAL STRENGTH : " << signal_strength << "  " << endl;
        }

         return 0;
    } 

有没有办法将输出重定向到文件的末尾? 有什么方法比ofstream更好?

1 个答案:

答案 0 :(得分:1)

追加 http://www.cplusplus.com/reference/fstream/ofstream/open/

ofstream file;
file.open ("rst.txt", std::ofstream::out | std::ofstream::app);

<强>更新
在评论中完成请求。

添加变量previous_mac_address

 [...]
 string previous_mac_address = "";
 while(1)
 {
 [...]

然后在打印之前比较previous_mac_addressmac_address

 [...]
 if ( previous_mac_address != mac_address )
 {
     cout << "      ADRESSE MAC     : " << mac_address << "     " ;
     cout << "      SIGNAL STRENGTH : " << signal_strength << "  " << endl;
    previous_mac_address = mac_address; 
 }
 else
    cout << ", " << signal_strength << "  " << endl;

 [...]
相关问题