博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
BinaryReader 和BinaryWriter 读写类对象
阅读量:4958 次
发布时间:2019-06-12

本文共 1824 字,大约阅读时间需要 6 分钟。

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.IO;namespace ConsoleApplication1{             public class INFO        {            public Int32 a { get; set; }            public string b { get; set; }            public string c { get; set; }            public INFO()            {                a = 0;                b = "";                c = "";            }                       public void ReadFromStream(Stream ms)            {                              BinaryReader binReader = new BinaryReader(ms);                this.a = binReader.ReadInt32();                this.b = binReader.ReadString();                this.c = binReader.ReadString();            }            public void WriteToStream(Stream ms)            {                BinaryWriter binWriter = new BinaryWriter(ms);                binWriter.Write(this.a);                binWriter.Write(this.b);                binWriter.Write(this.c);                Console.WriteLine(this.a.ToString());                Console.WriteLine(this.b);                Console.WriteLine(this.c);                                            }            static void Main(string[] args)            {                const string FilePath = @"D:\a.txt";                FileStream fs = new FileStream(FilePath, FileMode.OpenOrCreate, FileAccess.ReadWrite);                INFO g = new INFO();                g.a = 12;                g.b = "abcdefa";                g.c = "小圆子";                g.WriteToStream(fs);                             fs.Close();                FileStream fsr = new FileStream(FilePath, FileMode.OpenOrCreate, FileAccess.ReadWrite);                g.ReadFromStream(fsr);                fsr.Close();                Console.ReadLine();            }        }    }

 

 

转载于:https://www.cnblogs.com/zzlp/p/3247542.html

你可能感兴趣的文章
[Locked] Wiggle Sort
查看>>
deque
查看>>
Setting up a Passive FTP Server in Windows Azure VM(ReplyCode: 227, Entering Passive Mode )
查看>>
Python模块调用
查看>>
委托的调用
查看>>
c#中从string数组转换到int数组
查看>>
数据模型(LP32 ILP32 LP64 LLP64 ILP64 )
查看>>
java小技巧
查看>>
POJ 3204 Ikki's Story I - Road Reconstruction
查看>>
【BZOJ】2959: 长跑(lct+缩点)(暂时弃坑)
查看>>
iOS 加载图片选择imageNamed 方法还是 imageWithContentsOfFile?
查看>>
toad for oracle中文显示乱码
查看>>
SQL中Group By的使用
查看>>
错误org/aopalliance/intercept/MethodInterceptor解决方法
查看>>
Pylint在项目中的使用
查看>>
使用nginx做反向代理和负载均衡效果图
查看>>
access remote libvirtd
查看>>
(4) Orchard 开发之 Page 的信息存在哪?
查看>>
ASP.NET中 GridView(网格视图)的使用前台绑定
查看>>
深入了解Oracle ASM(二):ASM File number 1 文件目录
查看>>