Chinaunix首页 | 论坛 | 博客
  • 博客访问: 155336
  • 博文数量: 44
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 407
  • 用 户 组: 普通用户
  • 注册时间: 2015-11-10 13:28
个人简介

仰望星空

文章分类
文章存档

2016年(22)

2015年(22)

我的朋友

分类: C/C++

2016-03-13 14:07:06

这个还是比较简单的,从一个里边取出,并将其放入另一个里边
  1. #include
    #include
    #include
    // 文件的复制,就是讲文件from.txt复制到to.txt中需要的
    void main()
    {


    fstream file_from("d:\\from.txt", ios::in);
    if (!file_from)
    {
    cout<<"文件打开错误!"< abort();
    }


    fstream file_to("d:\\to.txt", ios::out);
    if (!file_to)
    {
    cout<<"文件打开错误!"< abort();
    }


    char ch;
    while(file_from.get(ch))
    {
    file_to.put(ch);
    }


    file_from.close();
    file_to.close();


    }


阅读(1287) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~