写入整型25   文件在MiniHex中显示

写入字符串I am happy
0A 6D -
6D - 这一行数据是C#把字符串转换为16进制形式
不知道为啥用MiniHex打开多了个0A
写入空""
在ASCII码中16进制00代表空字符
写入空格 " "
在ASCII码中16进制20代表空格. 01代表标题开始
string s = " AAA BBB CCC";
写入后
0C - 0C表示换页键;20表示空格
string s = "AAA BBB CCC";
写入后
0B 0B表示垂直制表符 20表示空格
string s = "A AA BBB CCC";
写入后
0C 0C表示换页键;20表示空格
string s = "AA A BBB CCC";
写入后
0C 0C表示换页键;20表示空格(还0C开头)
表示收到通知.
 private void button1_Click(object sender, EventArgs e)
{
BinaryWriter bw;
BinaryReader br;
//字符串到16进制
string s = "I have";
string sHex = "";
byte[] sbytes = Encoding.Default.GetBytes(s);
for (int i = ; i < sbytes.Length; i++)
{
sHex += sbytes[i].ToString("X2") + " ";
}
//整型到16进制
int i25 = ;
string i25Hex = "";
i25Hex = i25.ToString("X2");
//浮点数到16进制
double d = 3.14157;
string dHex = "";
//dHex = d.ToString("X2");//报错
byte[] dbytes = Encoding.Default.GetBytes(d.ToString()); for (int i = ; i < dbytes.Length; i++)
{
dHex += dbytes[i].ToString("X2") + " ";
} bool b = true; string bHex = ""; //create the file bw = new BinaryWriter(new FileStream("mydata", FileMode.Create)); //创建文件 bin目录下 //writing into the file
//bw.Write(i25);//写入1个25
// bw.Write(d);
// bw.Write(b);
bw.Write(s);//写入一个字符串
bw.Close();
MessageBox.Show("ccc"); //写入'二进制'完成
//reading from the file
br = new BinaryReader(new FileStream("mydata", FileMode.Open));//在这里打个断点, i25 = br.ReadInt32(); d = br.ReadDouble(); b = br.ReadBoolean(); s = br.ReadString(); br.Close(); }

一脸懵逼....... 0A 0B 0C 06  什么鬼

1个字节8位  最大10进制数  最小值是-

    =  (在0000   1111中是255)在( 1111中是-)
=
=
= -
= -
= -
2个字节(1个字)16位 max
=
2个字32位 (1个字=2个字节)
= 10位数
4个字64位 = 19位数
int -> System.Int32 (整型,占 字节,表示 位整数,范围 -,,, 到 ,,,)

1个字节8位  最大10进制数 127 最小值是-128

0000 0000

1111 1111   = 255 (在0000 0000 1111 1111中是255)在(1111 1111中是-1)

1111 1110   = 254

0111 1111   = 127

1000 0000   = -128

1000 0001   = -127

1000 0010   = -126

2个字节(1个字)16位 max

0111 1111 1111 1111 = 32767

2个字32位 (1个字=2个字节)

0111 1111 1111 1111  1111 1111 1111 1111 = 2147483647    10位数

4个字64位

0111 1111 1111 1111  1111 1111 1111 1111

1111 1111 1111 1111  1111 1111 1111 1111 = 9223372036854775807  19位数

int -> System.Int32 (整型,占 4 字节,表示 32 位整数,范围 -2,147,483,648 到 2,147,483,647)

C# 创建二进制文件并写入
BinaryWriter bw = new BinaryWriter(new FileStream("mydata", FileMode.Create));
//bw.Write(i25);//写入1个25
// bw.Write(d);
// bw.Write(b);
bw.Write(s);//写入一个字符串
bw.Close(); C# 字节数组到字符串
public static string ByteArrayToString(byte[] ba)
{
string hex = BitConverter.ToString(ba);
return hex.Replace("-", "");
}
string str = System.Text.Encoding.Default.GetString(byteArray) C# 数组的创建
byte[] bytes = new byte[] { 0x01, 0x02, 0x03 };//直接赋值
byte[] bytes = new byte[];//每个值为0
byte[] bytes = { }; C# 读取二进制文件
BinaryReader br = new BinaryReader(new FileStream("mydata.pdf", FileMode.Open));
// var A0 =br.ReadByte(); //读取一个字节(第一个FF(25)(10进制)37)
byte[] bytes = new byte[];//每个值为0
for (int i = ; i < bytes.Length;i++ ) //循环读取多个字节
{
bytes[i] = br.ReadByte();
}
//读取1000字节
byte[] bytes = br.ReadBytes(); C# 读取二进制文件,从指定位置读取, 和读取到最后
br.BaseStream.Seek(, SeekOrigin.Begin);// 定位到第6236060个字节
var test = br.BaseStream.Length - br.BaseStream.Position;//总长度-当前位置, 可能是读取到最后
byte[] bytes = br.ReadBytes((int)test);
while (br.BaseStream.Position < br.BaseStream.Length)
{
// bytes[i] = br.ReadByte(); //读取到最后
}
using (BinaryReader br = new BinaryReader(fs))
{
while (br.PeekChar() > -)
{
// bytes[i] = br.ReadByte(); //读取到最后
}
}

C# 创建二进制文件并写入

BinaryWriter
bw = new BinaryWriter(new FileStream("mydata", FileMode.Create));

//bw.Write(i25);//写入1个25

//
bw.Write(d);

//
bw.Write(b);

bw.Write(s);//写入一个字符串

bw.Close();

C# 字节数组到字符串

public
static string ByteArrayToString(byte[] ba)

{

string
hex = BitConverter.ToString(ba);

return
hex.Replace("-", "");

}

string
str = System.Text.Encoding.Default.GetString(byteArray)

C# 数组的创建

byte[]
bytes = new byte[] { 0x01, 0x02, 0x03 };//直接赋值

byte[]
bytes = new byte[10];//每个值为0

byte[]
bytes = { };

C# 读取二进制文件

BinaryReader
br = new BinaryReader(new FileStream("mydata.pdf", FileMode.Open));

//
var A0 =br.ReadByte(); //读取一个字节(第一个FF(25)(10进制)37)

byte[]
bytes = new byte[1000];//每个值为0

for
(int i = 0; i < bytes.Length;i++ ) //循环读取多个字节

{

bytes[i]
= br.ReadByte();

}

//读取1000字节

byte[]
bytes = br.ReadBytes(1000);

C# 读取二进制文件,从指定位置读取, 和读取到最后

br.BaseStream.Seek(6236060,
SeekOrigin.Begin);// 定位到第6236060个字节

var test = br.BaseStream.Length -
br.BaseStream.Position;//总长度-当前位置,  可能是读取到最后

byte[]
bytes = br.ReadBytes((int)test);

while (br.BaseStream.Position < br.BaseStream.Length)

{

//    bytes[i] = br.ReadByte(); //读取到最后

}

using
(BinaryReader br = new BinaryReader(fs))

{

while
(br.PeekChar() > -1)

{

//    bytes[i] = br.ReadByte(); //读取到最后

}

}

C# 写入二进制文件的更多相关文章

  1. TypeError: write() argument must be str, not bytes报错原因及Python3写入二进制文件方法

    Python2随机写入二进制文件: with open('/python2/random.bin','w') as f: f.write(os.urandom(10)) 但使用Python3会报错: ...

  2. 使用C++将OpenCV中Mat的数据写入二进制文件,用Matlab读出

    在使用OpenCV开发程序时,如果想查看矩阵数据,比较费劲,而matlab查看数据很方便,有一种方法,是matlab和c++混合编程,可以用matlab访问c++的内存,可惜我不会这种方式,所以我就把 ...

  3. Python中str类型的字符串写入二进制文件时报TypeError错的处理方式

    在用二进制模式打开文件情况下,写入一个str对象时报错:TypeError: a bytes-like object is required, not 'str' 出现该问题是因为Python严格区分 ...

  4. C# 将long类型写入二进制文件用bw.Write(num);将其读出用long num= br.ReadInt64();

    理由: 因为long类型是 System.Int64 (长整型,占 8 字节,表示 64 位整数,范围大约 -(10 的 19) 次方 到 10 的 19 次方) 而long BinaryReader ...

  5. 将图片写入二进制文件,再从二进制文件还原图片(c++)

    #include "string" #include "iostream" #include "fstream" using namespa ...

  6. c++读取list.txt中每行的字符串以及写入二进制文件

    #include <fstream> #include <fstream> string path = ""; FILE* fp = fopen(path. ...

  7. python string写入二进制文件——直接wb形式open file,再write string即可

    4 down vote accepted You misunderstood what \xhh does in Python strings. Using \x notation in Python ...

  8. [转载:]Fortran 二进制文件读写

    一些朋友总是咨询关于二进制文件的读写和转化.这里就我自己的理解说一说. 一).一般问题 二进制文件与我们通常使用的文本文件储存方式有根本的不同.这样的不同很难用言语表达,自己亲自看一看,理解起来会容易 ...

  9. Python_struct模块操作二进制文件

    ''' 使用struct模块写入二进制文件 ''' import struct n=130000000 x=96.45 b=True s='a1@中国' sn=struct.pack('if?',n, ...

随机推荐

  1. Tensorflow MNIST浅层神经网络的解释和答复

    本系列文章由 @yhl_leo 出品,转载请注明出处. 文章链接: http://blog.csdn.net/yhl_leo/article/details/51416540 看到之前的一篇博文:深入 ...

  2. Servlet中使用RequestDispatcher调派请求--forware

    顺便演示了MVC的作法,以后hello.view可以移交到jsp中处理. 而MODEL和CONTROL,VIEW就实现了分享. HelloModel.java: package cc.openhome ...

  3. 洛谷 P3496 [POI2010]GIL-Guilds

    P3496 [POI2010]GIL-Guilds 题目描述 King Byteasar faces a serious matter. Two competing trade organisatio ...

  4. F1: A Distributed SQL Database That Scales GOOGLE F1 论文

    http://research.google.com/pubs/pub41344.html http://research.google.com/pubs/pub36726.html

  5. DTrace Probes In MySQL 自定义探针

    Inserting user-defined DTrace probes into MySQL source code is very useful to help user identify the ...

  6. 固定一个div在浏览器底部

    转自原文 如何固定一个div在浏览器底部   方法1:使用CSS绝对定位 div{ position:absolute; bottom:0px; left:0px; } 方法2:使用CSS固定定位 d ...

  7. 一张图告诉你Git的所有命令

  8. 《Qt on Android核心编程》前言:为什么写作本书

    2008年.我開始在CSDN写技术博客. 在此之前,我的理想是写出受人待见的小说来.我也以前在网络论坛上笔耕不辍获得一些成绩,也以前发表过一些散文以及小说.而那一年,当我再次拾起笔来写东西时.却选择了 ...

  9. 蒟蒻的数位DP专题总结

    BZOJ  1026: [SCOI2009]windy数: 题目链接: http://www.lydsy.com/JudgeOnline/problem.php?id=1026           d ...

  10. luogu3834 【模板】可持久化线段树1(主席树)

    关键字:线段树 可持久化 线段树:当版本(即对应的原序列的区间[1,r])一定时,每个节点的left,right下标为值域,值为其对应的原序列区间[1,r]中元素大小在值域中的元素个数. 可持久化:新 ...