符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
本篇内容介绍了“C#二进制读写类怎么使用”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
创新互联专注于塔什库尔干塔吉克网站建设服务及定制,我们拥有丰富的企业做网站经验。 热诚为您提供塔什库尔干塔吉克营销型网站建设,塔什库尔干塔吉克网站制作、塔什库尔干塔吉克网页设计、塔什库尔干塔吉克网站官网定制、小程序制作服务,打造塔什库尔干塔吉克网络公司原创品牌,更为您提供塔什库尔干塔吉克网站排名全网营销落地服务。
BinaryReader:用特定的编码将基元数据类型读作二进制值。
BinaryWriter:以二进制形式将基元类型写入流,并支持用特定的编码写入字符串。
读写流的基元数据类型。可以操作图像、压缩文件等二进制文件。也可以是MemoryStream等。
不需要一个字节一个字节进行操作,可以是2个、4个、或8个字节这样操作。
可以将一个字符或数字按指定数量的字节进行写入。
using (BinaryWriter writer = new BinaryWriter(File.Open(fileName, FileMode.Create))) { writer.Write(1.250F); writer.Write(@"c:\Temp"); writer.Write(10); writer.Write(true); }
Response.BinaryWrite()方法输出二进制图像
FileStream fs = new FileStream(Server.MapPath("未命名.jpg"), FileMode.Open);//将图片文件存在文件流中 long fslength = fs.Length;//流长度 byte[] b=new byte[(int)fslength];//定义二进制数组 fs.Read(b, 0, (int)fslength);//将流中字节写入二进制数组中 fs.Close();//关闭流 Response.ContentType = "image/jpg";//没有这个会出现乱码 Response.BinaryWrite(b);//将图片输出在页面
每次读取都回提升流中的当前位置相应数量的字节。
下面的代码示例演示了如何存储和检索文件中的应用程序设置。
const string fileName = "AppSettings.dat"; float aspectRatio; string tempDirectory; int autoSaveTime; bool showStatusBar; if (File.Exists(fileName)) { using (BinaryReader reader = new BinaryReader(File.Open(fileName, FileMode.Open))) { aspectRatio = reader.ReadSingle(); tempDirectory = reader.ReadString(); autoSaveTime = reader.ReadInt32(); showStatusBar = reader.ReadBoolean(); } Console.WriteLine("Aspect ratio set to: " + aspectRatio); Console.WriteLine("Temp directory is: " + tempDirectory); Console.WriteLine("Auto save time set to: " + autoSaveTime); Console.WriteLine("Show status bar: " + showStatusBar); }
BinaryReader读取图片:
using (FileStream fs = new FileStream("1.jpg", FileMode.Open, FileAccess.Read)) { //将图片以文件流的形式进行保存 using (BinaryReader br = new BinaryReader(fs)) { byte[] imgBytesIn = br.ReadBytes((int)fs.Length); //将流读入到字节数组中 br.Close(); } }
1、SoapFormatter(用于HTTP中)和BinaryFormatter(用于TCP中)类实现了IFormatter接口 (由继承IRemotingFormatter,支持远程过程调用 (Rpc))
Deserialize(Stream) 反序列化所提供流中的数据并重新组成对象图形。
Serialize(Stream, Object) 将对象或具有给定根的对象图形序列化为所提供的流。
2、举例:
[Serializable] public class Product //实体类 { public long Id; [NonSerialized]//标识不序列化此成员Name public string Name; public Product(long Id, string Name) { this.Id = Id; this.Name = Name; } } static void Main() { //序列化(对象保存到文件) ListProducts = new List { new Product(1,"a"),new Product(2,"b") }; FileStream fs = new FileStream("DataFile.dat", FileMode.Create); IFormatter formatter = new BinaryFormatter(); formatter.Serialize(fs, Products); fs.Close(); //反序列化(文件内容转成对象) FileStream fs1 = new FileStream("DataFile.dat", FileMode.Open); BinaryFormatter formatter1 = new BinaryFormatter(); List addresses = (List )formatter1.Deserialize(fs1); fs1.Close(); foreach (Product de in addresses) { Console.WriteLine("{0} lives at {1}.", de.Id, de.Name); } }
“C#二进制读写类怎么使用”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注创新互联网站,小编将为大家输出更多高质量的实用文章!