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

Redirect console output to the end of a file C++ using ofstream

本文关键字:文件 C++ 末尾 重定向 输出 ofstream 控制台 使用      更新时间:2023-10-16

我想使用 ofstream 将新的输出从 buff 添加到文件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;
    } 

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

追加自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;
 [...]