zoukankan      html  css  js  c++  java
  • C#处理bin文件

    1.
     fs.Position  写入的位置,从哪个位置开始写

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

    数字转化成字节

    short x = 6;

    byte[] a=System.BitConverter.GetBytes(x); //得到小端字节序数组

    Array.Reverse(a); //反转数组转成大端。

    bin文件写入的显示是16进制。查看ASCII码表。

            private void WriteFile()
            {
                string saveFileName = "d:\test.bin";
                using (FileStream fs = new FileStream(saveFileName, FileMode.Create, FileAccess.Write))
                {
                    byte[] byte1 = System.Text.Encoding.ASCII.GetBytes("12345678");
                    fs.Position = 0;              
                    fs.Write(byte1, 0, byte1.Length);
    
                    byte[] byte2 = System.Text.Encoding.ASCII.GetBytes("abcdef");
                    fs.Position = byte1.Length;
                    fs.Write(byte2, 0, byte2.Length);
    
                    byte[] byte3= System.Text.Encoding.ASCII.GetBytes("ABCDEF");
                    fs.Position = byte1.Length+ byte2.Length;
                    fs.Write(byte3, 0, byte3.Length);
    
    
                }//end using
    
    
            }

     读取

     FileStream fs = new FileStream(filename, FileMode.Open, FileAccess.Read);
    UInt32 imageSize = (UInt32)fs.Length;
     BinaryReader br = new BinaryReader(fs);
  • 相关阅读:
    PosegreSQL基础回顾(第 5 章 数据定义)
    PosegreSQL基础回顾(第 4 章 SQL语法)
    大数据学习2(伪分布式搭建)
    大数据学习2(MapReduce)
    大数据学习1(HDFS)
    Linux find用法
    shell循环
    查询一次数据库给多个变量赋值
    linux cut用法
    linux权限
  • 原文地址:https://www.cnblogs.com/ike_li/p/5787206.html
Copyright © 2011-2022 走看看