hzxwonder 发表于 2020-4-22 07:21:42

文件复制操作

本帖最后由 hzxwonder 于 2020-4-22 08:01 编辑

#include<iostream>
#include<fstream>

using namespace std;

int main()
{
        ofstream out;
        ifstream in;
        in.open("test.txt");
        out.open("test2.txt");
        if (!out)
        {
                cerr << "failure to open" << endl;
                return 0;
        }
        if (!in)
        {
                cerr << "failure to open" << endl;
                return 0;
        }
        char ch;
        while (in >> ch)
        {
                out << ch;
        }
        out << endl;
        in.close();
        out.close();

        return 0;
}

为什么输出的文件里不会自动换行呢?

hzxwonder 发表于 2020-4-22 07:23:25

像这样

本帖最后由 hzxwonder 于 2020-4-22 07:25 编辑

输出的文件和输入的文件差了换行

倒戈卸甲 发表于 2020-4-22 08:47:13

这个,因为while(in>>ch)语句是到文件末尾彻底结束,但再换处也会断开,或者说,换行符不会被读入。解决办法很简单,不要一次读一个字符,char ch改为char ch,这样ch为一个数组,其长度足以容纳整行,每次断开时,ch当中都读入了一整行。好处是什么呢?那就是输出语句直接写为out<<endl,实现正确换行

倒戈卸甲 发表于 2020-4-22 08:49:32

本帖最后由 倒戈卸甲 于 2020-4-22 08:51 编辑

虽然说了很多,但其实只要两处改动。
char ch={0};
      while (in >> ch)
      {
                out << ch<<endl;
      }
当然你也可以使用getline函数,但我觉得还是这种方式最简单

hzxwonder 发表于 2020-4-22 11:18:20

好的,谢谢
页: [1]
查看完整版本: 文件复制操作