我正在尝试在指定文件中查找一行并将其替换为我的行。我无法访问要运行它的机器上的库,所以我创建了一个自定义文件。问题似乎是对 fstream 对象的写入调用。我想知道你们中的任何人是否可以提供帮助。此外,我的 getline 循环在到达文件末尾之前停止,我不知道为什么。
#include <iostream>
#include <fstream>
#include <string>
#define TARGET2 "Hi"
using namespace std;
void changeFile(string fileName){
fstream myStream;
myStream.open(fileName.c_str(),fstream::in | fstream::out);
string temp;
string temp2 = "I like deep dish pizza";
while(getline(myStream, temp)){
if(temp == TARGET2){
cout << "Match" << endl;
myStream.write(temp2.c_str(), 100);
myStream << temp2 << endl;
cout << "No runtime error: " << temp2 << endl;
}
cout << temp << endl;
}
myStream.close();
}
int main (void){
changeFile("Hi.txt");
return 0;
}
你好.txt
Hi
Today is June 18
I like pizza
I like pepperoni
输出是:
Match
No runtime error: I like deep dish pizza
Hi