使用 ofstream 将控制台输出重定向到文件 C++ 的末尾
Redirect console output to the end of a file C++ using ofstream
我想使用 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;
}
有没有办法将输出重定向到文件末尾?
有什么比 ofstream 更好的方法吗?
附加自
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_address
和 mac_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;
[...]
我想使用 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;
}
有没有办法将输出重定向到文件末尾? 有什么比 ofstream 更好的方法吗?
附加自 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_address
和 mac_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;
[...]