二进制文件读写

简介:  1.二进制写入,ios::binary #include<iostream> #include <fstream> #include <string>   using namespace std;   struct MyStruct {     char *p = "北京是


1.二进制写入,ios::binary

#include<iostream>

#include <fstream>

#include <string>

 

using namespace std;

 

struct MyStruct

{

    char *p = "北京是帝都";

    int num = 20;

    double db = 10.98;

    char ch = 'a';

};

 

void main1()

{

    ofstream fout("E:\\wen.txt", ios::out);

    ifstream fin("E:\\wen.txt");

    //下面的大小时24

    std::cout << sizeof(MyStruct) << std::endl;

    MyStruct my1;

    //向文件中写入内容

    fout << my1.p << " " << my1.num << " " << my1.db << " " << my1.ch << "\n";

    fout.close();

    char str[100] = { 0 };

    //提取文件内容

    fin.getline(str, 100, 0);

    std::cout << str << std::endl;

    fin.close();

    cin.get();

    //运行结果是:

    //24

    //北京是帝都 20 10.98 a

    //同时在E盘生成了wen.txt

}

 

void main()

{

    MyStruct my1;

    my1.p = "chuheridangwu";

    //写入文件,按照二进制的方式写入,要加上:ios::binary

    ofstream fout("C:\\bin.bin", ios::binary);

    fout.write((char *)&my1, sizeof(my1));

    //第一个参数是要写入文件的内存的首地址

    //第二个参数是长度

    fout.close();

    ifstream fin("C:\\bin.bin", ios::binary);

    MyStruct newmy1;

    fin.read((char *)&newmy1, sizeof(newmy1));

    //保存文件读取到内存,内存首地址

    //长度

    std::cout << newmy1.p << std::endl;

    fin.close();

 

    std::cin.get();

//这里的运行结果是:chuheridangwu

}

2.字节的二进制

#include<iostream>

#include <fstream>

#include <string>

 

using namespace std;

 

void main()

{

    ifstream fin("C:\\write.exe", ios::binary);

    ofstream fout("C:\\newwrite.exe", ios::binary);

    if (!fin || !fout)

    {

        std::cout << "文件打开失败";

        return;

    }

    std::cout << "文件拷贝开始\n";

    char ch = 0;

    while (fout && fin.get(ch))//引用的方式读取到一个字符

    {

        fout.put(ch);//写入一个字节

 

    }

    fin.close();

    fout.close();

 

    std::cout << "文件拷贝完成";

    std::cin.get();

}

 

3.二进制内存文件拷贝

#include<iostream>

#include <fstream>

#include <string>

 

using namespace std;

 

struct MyStruct

{

    int i;

    double db;

};

 

void main()

{

    ofstream fout("E:\\big.txt", ios::binary);

    MyStruct ss[5] = { { 1, 1.1 }, { 2, 2.2 }, { 3, 3.3 }, { 4, 4.4 }, {5, 5.5 } };

    fout.write((char *)ss, sizeof(MyStruct)* 5);

    fout.close();

 

    ifstream fin("E:\\big.txt", ios::binary);

    MyStruct *p = new MyStruct[5];//动态分配内存

    fin.read((char *)p, sizeof(MyStruct)* 5);

    fin.close();

 

    for (int i = 0; i < 5; i++)

    {

        std::cout << p[i].i << " " << p[i].db << std::endl;

    }

 

    cin.get();

}

运行结果:

3.随机二进制文件读写

#include<iostream>

#include <fstream>

using namespace std;

 

void main1a()

{

    double db[10] = { 1.1, 2.2, 3.3, 4.4, 5.5, 6.6, 7.7, 8.8, 9.9,10.1 };

    ofstream  fout("N.txt", ios::binary);

    fout.write((char *)db, 80);

    fout.close();

    double *p = new double[10];

    ifstream fin("N.txt", ios::binary);

 

    fin.read((char *)p, 80);

    fin.close();

    for (int i = 0; i < 10; i++)

    {

        std::cout << p[i] << endl;

    }

 

    std::cin.get();

}

 

void main2b()//随机位置读取

{

    double db[10] = { 1.1, 2.2, 3.3, 4.4, 5.5, 6.6, 7.7, 8.8, 9.9,10.1 };

    ofstream  fout("N.txt", ios::binary);

    fout.write((char *)db, 80);

    fout.close();

    double *p = new double[5];

    ifstream fin("N.txt", ios::binary);

    fin.seekg(-40, ios::end);//读写

    fin.read((char *)p, 40);

    fin.close();

    for (int i = 0; i < 5; i++)

    {

        std::cout << p[i] << endl;

    }

 

    std::cin.get();

}

 

 

void main()

{

    //先读取

    double *p = new double[10];

    ifstream fin("N.txt", ios::binary);

    fin.read((char *)p, 80);

    fin.close();

    for (int i = 0; i < 10; i++)

    {

        std::cout << p[i] << endl;

    }

    //随机写入

    double db[] = { 100.9, 200.8, 300.7, 400.6, 500.5 };

    //ios::in | ios::out不再清零文件,否则会清零

    ofstream  fout("N.txt", ios::binary | ios::in | ios::out);

    //fout.seekp(40, ios::beg);

    fout.seekp(0, ios::end);//写入

    fout.write((char *)db, 40);

    fout.close();

 

    //再次读取

    {

        double *p = new double[20];

        ifstream fin("N.txt", ios::binary);

        fin.read((char *)p, 160);

        fin.close();

        for (int i = 0; i < 20; i++)

        {

            std::cout << p[i] << endl;

        }

    }

 

    std::cin.get();

}

4.随机文件读写

#include<iostream>

#include <fstream>

using namespace std;

 

void main1()//随机位置读取

{

    ofstream fout("p.txt");

    fout << "1234567890abcdefghijklmn";

    fout.close();

    ifstream fin("p.txt");

    //fin.seekg(9, ios::beg);//从开始,往前9个字符

    fin.seekg(-9, ios::end);//从尾部,倒数9个字符

    char ch;

    while (fin.get(ch))

    {

        cout << ch;

    }

    fin.close();

    cin.get();

}

 

void main2()

{

    ofstream fout("px.txt");

    fout << "1234567890abcdefghijklmn";

    fout.close();

 

    ofstream Fout("px.txt", ios::in | ios::out);

    char str[] = "ABCDEFG";

    Fout.seekp(0, ios::end);//随机位置进行读写

    long size = Fout.tellp();//当前位置距离begin有多少个字节,尾部可以获取文件大小

 

    cout << size << endl;

    Fout << str;

    Fout.close();

 

    ifstream fin("px.txt");

    char ch;

    while (fin.get(ch))

    {

        cout << ch;

    }

 

    fin.close();

    cin.get();

}

 

 

 

目录
相关文章
|
4天前
|
搜索推荐 编译器 Linux
一个可用于企业开发及通用跨平台的Makefile文件
一款适用于企业级开发的通用跨平台Makefile,支持C/C++混合编译、多目标输出(可执行文件、静态/动态库)、Release/Debug版本管理。配置简洁,仅需修改带`MF_CONFIGURE_`前缀的变量,支持脚本化配置与子Makefile管理,具备完善日志、错误提示和跨平台兼容性,附详细文档与示例,便于学习与集成。
288 116
|
19天前
|
域名解析 人工智能
【实操攻略】手把手教学,免费领取.CN域名
即日起至2025年12月31日,购买万小智AI建站或云·企业官网,每单可免费领1个.CN域名首年!跟我了解领取攻略吧~
|
6天前
|
数据采集 人工智能 自然语言处理
Meta SAM3开源:让图像分割,听懂你的话
Meta发布并开源SAM 3,首个支持文本或视觉提示的统一图像视频分割模型,可精准分割“红色条纹伞”等开放词汇概念,覆盖400万独特概念,性能达人类水平75%–80%,推动视觉分割新突破。
408 38
Meta SAM3开源:让图像分割,听懂你的话
|
13天前
|
安全 Java Android开发
深度解析 Android 崩溃捕获原理及从崩溃到归因的闭环实践
崩溃堆栈全是 a.b.c?Native 错误查不到行号?本文详解 Android 崩溃采集全链路原理,教你如何把“天书”变“说明书”。RUM SDK 已支持一键接入。
670 220
|
1天前
|
Windows
dll错误修复 ,可指定下载dll,regsvr32等
dll错误修复 ,可指定下载dll,regsvr32等
132 95
|
11天前
|
人工智能 移动开发 自然语言处理
2025最新HTML静态网页制作工具推荐:10款免费在线生成器小白也能5分钟上手
晓猛团队精选2025年10款真正免费、无需编程的在线HTML建站工具,涵盖AI生成、拖拽编辑、设计稿转代码等多种类型,均支持浏览器直接使用、快速出图与文件导出,特别适合零基础用户快速搭建个人网站、落地页或企业官网。
1664 158
|
存储 人工智能 监控
从代码生成到自主决策:打造一个Coding驱动的“自我编程”Agent
本文介绍了一种基于LLM的“自我编程”Agent系统,通过代码驱动实现复杂逻辑。该Agent以Python为执行引擎,结合Py4j实现Java与Python交互,支持多工具调用、记忆分层与上下文工程,具备感知、认知、表达、自我评估等能力模块,目标是打造可进化的“1.5线”智能助手。
912 61