写入整型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. in与exists的区别

    转载自:http://blog.csdn.net/lick4050312/article/details/4476333 select * from Awhere id in(select id fr ...

  2. P2330 [SCOI2005] 繁忙的都市 洛谷

    https://www.luogu.org/problem/show?pid=2330#sub 题目描述 城市C是一个非常繁忙的大都市,城市中的道路十分的拥挤,于是市长决定对其中的道路进行改造.城市C ...

  3. href=#与 href=javascript:void(0) 的区别

    <a href="#"> 点击链接后,页面会向上滚到页首,# 默认锚点为 #TOP <a href="javascript:void(0)" ...

  4. vs2010+cuda5.0+qt4.8

    在进行CUDA处理的时候,总是在控制台程序下,于是就想要通过qt进行界面处理. 一开始先测试一下qt的环境,新建一个qt项目,不过在运行的时候提示平台不对,换成64位 出现 这个是qt的版本问题,在右 ...

  5. 源代码:windows文件切割与合并

    #include <Windows.h> #include <vector> #include <string> using namespace std; //推断 ...

  6. cocos2d-x andriod, Box2D.h: No such file or directory

    原文链接:r=47980">http://www.cocos2d-x.org/forums/6/topics/47503? r=47980 You need to include li ...

  7. linux 进程通信之 共享内存

    共享内存是被多个进程共享的一部分物理内存.共享内存是进程间共享数据的一种最快的方法.一个进程向共享内存区域写入了数据,共享这个内存区域的全部进程就能够立马看到当中的内容. 关于共享内存使用的API k ...

  8. CSS制作响应式正方形及其应用

    CSS制作响应式正方形?什么鬼?干嘛用的?干嘛用的没人有每人的需求,本人也正好是由于公司正在做的业务须要,想做个照片展示的功能(当然得符合响应式了).而这个照片展示必须符合下面几点功能:1.用三张图片 ...

  9. DOCKER_HOST have a weird tcp

    [piqiu@benjaminpro ~]$boot2docker start Waiting for VM and Docker daemon to start... ............... ...

  10. 使用butterknife注解project配置

    使用butterknife注解的时候建议使用Jar包 Jar包下载地址:https://github.com/JakeWharton/butterknife Eclipseproject配置: 步骤一 ...