c++编写两个文本文件的内容连接成一个新的文件。
时间: 2024-02-15 15:02:37 浏览: 71
c++编写的读取两个文件内容并相加读入到另外一个文件中
5星 · 资源好评率100%
可以使用C++中的文件操作来实现两个文本文件的内容连接。具体步骤如下:
1. 打开两个源文件和一个目标文件,可以使用fstream库中的ifstream和ofstream类来打开文件。
```
ifstream file1("file1.txt");
ifstream file2("file2.txt");
ofstream file3("file3.txt");
```
2. 逐行读取第一个文件的内容,并将内容写入目标文件中。
```
string line;
while (getline(file1, line)) {
file3 << line << endl;
}
```
3. 逐行读取第二个文件的内容,并将内容写入目标文件中。
```
while (getline(file2, line)) {
file3 << line << endl;
}
```
4. 关闭所有文件。
```
file1.close();
file2.close();
file3.close();
```
完整的代码如下:
```
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main() {
ifstream file1("file1.txt");
ifstream file2("file2.txt");
ofstream file3("file3.txt");
string line;
while (getline(file1, line)) {
file3 << line << endl;
}
while (getline(file2, line)) {
file3 << line << endl;
}
file1.close();
file2.close();
file3.close();
cout << "Files merged successfully." << endl;
return 0;
}
```
注意,以上代码中的文件名和路径需要根据实际情况进行修改。
阅读全文