我写了一个程序,它接受了n个文件,然后用户将输入他们的文件名,然后我的程序将所有这些文件连接成一个由换行符分隔的文件,这是我的程序(它的工作原理)好):
#include <iostream>
#include <string>
#include <fstream>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
using namespace std;
int main()
{
int n;
cin>>n;
ifstream read;
ofstream finalout;
int i;
finalout.open("concatn.txt");
if(!finalout)
{
cout << "Oops something went wrong, SORRY DUDE" << endl;
}
char a[n][50];
char help[50];
for(i=0; i<n; i++)
{
scanf("%s", help);
strcpy(a[i], help);
}
string STRING;
for(i=0; i<n; i++)
{
read.open(a[i]);
if(read == NULL)
{
cout << "Could not open the file, SORRY DUDE" << endl;
}
while(read.eof() == 0)
{
getline(read, STRING);
finalout << STRING;
}
finalout << "\n";
read.close();
read.clear();
}
finalout.close();
return 0;
}
现在我必须做同样的事情,但使用“BINARY READ AND WRITE”,但我的输出文件应该仍然是一个txt文件,我怎么能这样做,有人可以解释这是什么意思,因为我有点困惑!?
答案 0 :(得分:2)
二进制读写只是为了支持plateform-independent
读写支持。例如,在Windows平台上New Line
是\r\n
,但对于基于UNIX的平台,它只是\n
。因此,当我们以二进制模式读取时,字符将被读取为。但如果您在非二进制模式中阅读它,那么将根据需要修改字符。
要以二进制模式打开文件,请使用ios::binary
标志。
ofstream myfile;
myfile.open ("example.bin", ios::out | ios::app | ios::binary);