码迷,mamicode.com
首页 > 编程语言 > 详细

c++ fstream用法

时间:2018-05-21 14:26:42      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:names   size   mes   nat   介绍   base   open()   ima   AC   

今天介绍一个复制 粘贴的函数,用fstream实现

#include "stdafx.h"
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
    fstream in("a.jpg", ios_base::binary|ios_base::in);
    if (in.is_open())
    {
        fstream out("F:/1/nature.jpg", ios_base::binary|ios_base::out);
        if (out.is_open())
        {
            char* buf = new char[255];
            while (in.good())
            {
                in.read(buf, 255);
                int count = in.gcount();
                out.write(buf, count);
            }
            out.close();
        }
        in.close();
    }
    return 0;
}

 

示例展示:

原来的文件:

技术分享图片

 

运行程序后:

技术分享图片

c++ fstream用法

标签:names   size   mes   nat   介绍   base   open()   ima   AC   

原文地址:https://www.cnblogs.com/Trojan00/p/9066622.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!