读一个十六进制的bin文件,在bin文件添加四行头,生成新的bin文件。bin文件可以用vs打开查看。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace ACU_004GEN
{
    public partial class FormMain : Form
    {
        public FormMain()
        {
            InitializeComponent();
        }

        private byte[] binContent;
        private string vendorCode = "";
        private string deviceType = "";
        private string hardwareVersion = "";
        private byte[] crc32 ;
        private byte[] checkSum;
        private byte[] firmwareLength ;

        private string sourceBinFile = "";
        private string saveBinFile = "";

        //private uint crc = 0xFFFFFFFF;
        private uint crc_function = 0xEDB88320;
        private uint crc32_reverse(byte[] buf)
        {
            byte i;
            uint crc = 0xFFFFFFFF;
            //uint crc_function = 0xEDB88320;
            foreach (byte bufByte in buf)
            {
                ; i <<= )
                {
                    )
                    {
                        crc >>= ;
                        crc ^= crc_function;
                    }
                    ;
                    )
                        crc ^= crc_function;
                }
            }
            return (crc);
        }

        private uint CheckSum(byte[] buf)
        {

            //uint crc = 0xFFFFFFFF;
            ;
            //uint crc_function = 0xEDB88320;
            foreach (byte bufByte in buf)
            {
                checkSum = checkSum + bufByte;

            }
            return (checkSum);
        }
        private void Form1_Load(object sender, EventArgs e)
        {
            rbtCheckSum.Checked = true;
            buttonGenerate.Enabled = false;
            linkLabelBinaryName.Text = null;
        }
        private void label1_Click(object sender, EventArgs e)
        {

        }

        private void textBox5_TextChanged(object sender, EventArgs e)
        {

        }

        private void labelCheckSum_Click(object sender, EventArgs e)
        {

        }

        private void buttonImportBinary_Click(object sender, EventArgs e)
        {

            //openFileDialog1 = new OpenFileDialog();
            //OpenFileDialog dialog = new OpenFileDialog();
            openFileDialogImport.Filter = "Binary Files (*.bin)|*.bin|All Files (*.*)|*.*";
            openFileDialogImport.Title = string.Format("Open Firmware File");
            openFileDialogImport.FilterIndex = ;
            openFileDialogImport.RestoreDirectory = true;
            if (openFileDialogImport.ShowDialog() != DialogResult.Yes)
            {
                //sourceBinFile = openFileDialogImport.FileName;

                try
                {
                    if (!File.Exists(sourceBinFile))
                    {
                        return;
                    }

                    buttonGenerate.Enabled = true;                  

                }
                catch (System.Exception ex)
                {
                    MessageBox.Show(ex.Message, "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                }
            }
        }

        private void ReadWirteBinFile()
        {           

            using (FileStream fs = new FileStream(saveBinFile, FileMode.Create, FileAccess.Write))
            {
                , );
                WirteBin(fs, headerRow0, );

                ) + hardwareVersion;
                WirteBin(fs, headerRow1, );

                //byte[] headerRow2 = crc32 + firmwareLength;
                //WirteBin(fs, headerRow2, 2);
                fs.Position =  * ;
                if (rbtCRC32.Checked == true)
                {
                    fs.Write(crc32, , );
                }
                else
                {
                    fs.Write(checkSum, , );

                }
                fs.Position =  *  + ;
                fs.Write(firmwareLength, , );

                string headerRow3 = "\0";
                WirteBin(fs, headerRow3, );

                fs.Position =  * ;
                fs.Write(binContent, , binContent.Length);              

            }//end using

        }

        private void WirteBin(FileStream fs,string str,int row)
        {

            byte[] buffer  = System.Text.Encoding.ASCII.GetBytes(str);
            fs.Position =  * row;
            fs.Write(buffer, , str.Length);
        }

        private void buttonGenerate_Click(object sender, EventArgs e)
        {
            buttonImportBinary.Enabled = false;

            vendorCode = LeftAddZero(textBoxVendorCode.Text.Trim(), );
            deviceType = LeftAddZero(textBoxDeviceType.Text.Trim(), );
            hardwareVersion = LeftAddZero(textBoxHardwareVersion.Text.Trim(), );

            SaveFileDialog saveDlg = new SaveFileDialog();
            saveDlg.Filter = "Binary Files (*.bin)|*.bin|All Files (*.*)|*.*";
            saveDlg.Title = string.Format("Save Binary File");
            saveDlg.FilterIndex = ;
            saveDlg.RestoreDirectory = true;
            if (saveDlg.ShowDialog() != DialogResult.Yes)
            {
                saveBinFile = saveDlg.FileName;
                try
                {
                    ReadWirteBinFile();
                    buttonGenerate.Enabled = false;

                }
                catch (System.Exception ex)
                {
                    MessageBox.Show(ex.Message, "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                    buttonImportBinary.Enabled = true;
                }
            }

            buttonImportBinary.Enabled = true;

        }

        private string RightAddZero(string str, int length)
        {
            string retStr = str;
            for (int i = str.Length;i< length;i++)
            {
                retStr = retStr + "\0";
            }

            return retStr;
        }

        private string LeftAddZero(string str, int length)
        {
            string retStr = str;
            for (int i = str.Length; i < length; i++)
            {
                retStr ="\0"+ retStr;
            }

            return retStr;
        }

        private void openFileDialog1_FileOk(object sender, CancelEventArgs e)
        {
            sourceBinFile = openFileDialogImport.FileName;

            linkLabelBinaryName.Text = sourceBinFile;
            binContent = File.ReadAllBytes(sourceBinFile);
            firmwareLength = System.BitConverter.GetBytes(binContent.Length);
            //Array.Reverse(firmwareLength);
            textBoxFileLength.Text = LeftAddZero(binContent.Length.ToString();
            uint crcTmp = crc32_reverse(binContent);
            crc32 = System.BitConverter.GetBytes(crcTmp);

            uint checkSumTmp = CheckSum(binContent);
            checkSum = System.BitConverter.GetBytes(checkSumTmp);

            //Array.Reverse(crc32);
            textBoxCRC32.Text = LeftAddZero(crcTmp.ToString();
            textBoxCheckSum.Text = LeftAddZero(checkSumTmp.ToString();
        }

    }
}

C# 读写十六进制bin 文件的更多相关文章

  1. 如何将一个二进制的xxx.bin文件轻松转为C语言数组

    今天在写一个SPI-flash读写程序,目的是要将一个二进制文件写到SPI_FLASH中,最后通过开机读取,实际上这个.bin文件就是uboot和second-boot的结合体.通过SD卡写到SPI- ...

  2. 使用Spark读写CSV格式文件(转)

    原文链接:使用Spark读写CSV格式文件 CSV格式的文件也称为逗号分隔值(Comma-Separated Values,CSV,有时也称为字符分隔值,因为分隔字符也可以不是逗号.在本文中的CSV格 ...

  3. Keil如何生成bin文件【Keil生成Bin文件的方法】

    使用过Keil的同鞋都知道,现在Keil中默认可以输出.axf的调试文件和可以通过钩选输出的.hex可执行文件,没有bin(二进制)文件的输出选项.可是偏偏某些时候需要或者习惯性的使用.bin文件来进 ...

  4. S03_CH12_基于UDP的QSPI Flash bin文件网络烧写

    S03_CH12_基于UDP的QSPI Flash bin文件网络烧写 12.1概述 为了满足不同的需求,本例程在"基于TCP的QSPI Flash bin文件网络烧写"上进行修改 ...

  5. S03_CH11_基于TCP的QSPI Flash bin文件网络烧写

    S03_CH11_基于TCP的QSPI Flash bin文件网络烧写 11.1概述 针对ZYNQ中使用QSPI BOOT的应用,将BOOT.bin文件烧写至QSPI Flash基本都是通过USB C ...

  6. java 读写properties (配置)文件

    Properties属性文件在Java应用程序中是经常可以看得见的,也是特别重要的一类文件.它用来配置应用程序的一些信息,不过这些信息一般都是比较少的数据,没有必要使用数据库文件来保存,而使用一般的文 ...

  7. STM32 Unicode 与 GBK 转换 .bin文件放到SD卡是啥意思

    2个数组 : }; }; 一个是Unicode 编码,一个是GBK编码: 用c2b软件转成.bin 二进制文件放到SD卡里: SD卡放入字库 .FON STM32 代码: 代码中SD卡字库和二进制路径 ...

  8. 处理bin文件

    1. fs.Position  写入的位置,从哪个位置开始写 fs.Write(byte1,0,byte1.Length); byte1写入的byte[], 写入内容从第几位开始取,length取多长 ...

  9. JLINK通过JFLASH烧写bin文件报错处理方法

    错误原因:烧写开始地址出错,打开BIN文件后弹出的设置开始地址不正确不能为0 解决措施:用J-FLASH LITE或者将开始地址设置成正确的地址(KEILMDK中IROM1的开始地址

随机推荐

  1. 关于hibernate纯sql查询返回结果集的问题(hbm.xml中不写多表关联)

    相信用过hibernate的兄弟们都会因为多表复杂查询后,为返回的结果如何组装到一个VO中而烦恼不已.我也不停的为此而烦恼,但是在看了hibernate的transform后,感觉这个方法还挺管用的. ...

  2. jquery-ui 的 主题 选择什么颜色? 建议使用html5 的标准进行书写, 更简洁!

    jQuery ui有多种主体, 基本上, 不能使用 no theme 的"主题包" base: 是基本的, 颜色以深灰色为主, 高亮显示为蓝色, ui lightness(明快) ...

  3. word中那些重要但是被人忽略的快捷键和长word文档的跳转

    重复上一次操作: F4, 这个太重要了,比如你在做一次很复杂的操作, 下一次又要这样操作时就很有用! 如设置 文字的 段落背景/ 底纹颜色!时要多次设置这个时就 非常有用! 段落缩进:ctrl+M : ...

  4. virtualBox下面安装linux系统如何共享目录

    背景: 系统是win+virtualBox 在虚拟机中安装了linuxMint系统. 如何共享目录呢 第一步: 在虚拟机中安装增强功能 2,在virtualBox中设置共享目录 3,在linux下创建 ...

  5. zookeeper集群配置与启动——实战

    1,准备: A:三台linxu服务器: 10.112.29.177 10.112.29.172 10.112.29.174 命令 hostname 得到每台机器的 hostname vm-10-112 ...

  6. 如何利用cookie来保存用户登录账号

    众所周知,cookie在网页编写中不接或缺,今天就谈谈如何利用cookie技术来保存用户登录账号 1.首先是否保存用户登录账号当然是用户自行决定,所以我们需要在用户登录界面设置一个复选框,以此取得用户 ...

  7. 微信企业号公测开启OA红海模式

    之前就有传出消息说腾讯要出微信企业号,百度直达号的发布间接敦促了微信企业号的开发进度,这不,企业号开始公测了.以下是微信π的消息.[微信企业号已开通账号超过10万 日均消息量超过100万条] 今日,微 ...

  8. (:: operator)作用域限定符的几种使用

    一.(:: operator)解决局部变量与全局变量重名问题 ; int main() { ; cout<<var<<endl;//local variable cout< ...

  9. 【C语言入门教程】2.5 字符型数据

    字符型数据用于在计算机上保存字符编码和一些文本控制命令,多个字符型数据和字符串结束符组成的序列称为字符串.Linux 系统与其他大多数操作系统一样,支持 ASCII编码对字符编码,每个字符占用 1 个 ...

  10. Mac安装OpenCV

    安装过程参考这篇文章Mac平台上OpenCV开发环境搭建 也可以参考文档官网上的安装文档Installation in Linux(不知道为什么没有Installation in Mac...) 我的 ...