2
    ifstream ifile("/home/zuma/xps.mp3", ios::binary | ios::in);
    ofstream ofile("/home/zuma/xxx.mp3", ios::binary | ios::out);

    copy(istream_iterator<unsigned char>(ifile), istream_iterator<unsigned char>(), ostream_iterator<unsigned char>(ofile));

    ifile.close();
    ofile.close();

创建的新文件的字节数少于原始文件的字节数且文件不匹配

4

1 回答 1

5

istream_iteratoruses operator>>,它是空格分隔的(不,以二进制模式打开文件不会改变这种行为)。改为使用istreambuf_iterator

istreambuf_iterator<char> in1(ifile), in2;
ostreambuf_iterator<char> out(ofile);
copy(in1, in2, out);

或者,正如 ildjarn 所提到的,您可以用更少的输入复制整个文件:

ofile << ifile.rdbuf();
于 2012-05-04T00:51:14.857 回答