同样的代码,上面可以运行,下面就不行...大大们帮小弟来看一下啊...
做了一个东西.想从16进制的dat参数表中读取数据然后转成10进制状态按照各种字节数来放进txtBOX中.但参数版本.生效时间.车站标识码都能正常读取.反倒是下一个读取2个字节的站点位置却度不出来了...代码都是一样复制的啊...那位大大能救救小弟啊...谢谢啊!!!==========================================================
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
namespace h易做图
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
string file = "1040.dat";
if (!File.Exists(file))
{
Console.WriteLine("文件不存在");
}
else
{
FileStream filestream = new FileStream(file, FileMode.Open, FileAccess.Read);
BinaryReader objBinaryReader = new BinaryReader(filestream);
string str1 = "";
string str2 = "";
string str3 = "";
string str4 = "";
//string str5 = "";
//string str6 = "";
//string str7 = "";
//string str8 = "";
//string str9 = "";
//string str10 = "";
//string str11 = "";
//string str12 = "";
//string str13 = "";
//string str14 = "";
//string str15 = "";
//string str16 = "";
//string str17 = "";
try
{
{
//参数版本
byte[] bt1 = objBinaryReader.ReadBytes(4);
for (int i = 0; i < bt1.Length; i++)
{
str1 += bt1[i].ToString("x");
}
this.txtBanben.Text = Convert.ToInt32(str1).ToString();
//生效时间
byte[] bt2 = objBinaryReader.ReadBytes(4);
for (int i = 0; i < bt2.Length; i++)
{
str2 += bt2[i].ToString("x");
}
int seconds = int.Parse(str2, System.Globalization.NumberStyles.HexNumber);
DateTime timeBase = new DateTime(1970, 01, 01);
DateTime nTime = timeBase.AddSeconds(seconds);
this.txtTime.Text = nTime.ToString();
//车站标识码
byte[] bt3 = objBinaryReader.ReadBytes(4);
for (int i = 0; i < bt1.Length; i++)
{
str3 += bt3[i].ToString("x");
}
this.txtChezhanbiaoshima.Text = Convert.ToInt32(str3).ToString();
//站点位置
byte[] bt4 = objBinaryReader.ReadBytes(4);
for (int i = 0; i < bt4.Length; i++)
{
str4 += bt4[i].ToString("x");
}
this.txtWeizhi.Text = Convert.ToInt32(str4).ToString();
}
}
catch (EndOfStreamException)
{
Console.WriteLine("以到文件末尾");
}
}
}
}
}
=====================================
我传的附件中参数表已经放在bin目录下了...直接就能运行的...但就是最后一个不能读取...大虾们帮帮我吧... --------------------编程问答-------------------- 為甚麼是 byte[] bt4 = objBinaryReader.ReadBytes(4);
不是 byte[] bt4 = objBinaryReader.ReadBytes(2);
你自己說的兩個字節阿,別的都是4個字節阿 --------------------编程问答-------------------- 这一段应该是我试验4个字节是否可行的时候帖子...
应该是1楼大大说的
byte[] bt4 = objBinaryReader.ReadBytes(2);
现在无法修改了...但就是上面那段代码...
另外谢谢1楼大大... --------------------编程问答-------------------- 这一段应该是我试验4个字节是否可行的时候帖子...
应该是1楼大大说的
byte[] bt4 = objBinaryReader.ReadBytes(2);
现在无法修改了...
1楼大大说的对.应该是2而不是4...
byte[] bt4 = objBinaryReader.ReadBytes(2);
这段代码...
补充:.NET技术 , C#