我正在尝试用C#编写一个应用程序,它将数据写入二进制文件然后读取它。问题是,当我尝试阅读它时,应用程序崩溃时出现错误“无法读取超出流的末尾。”
以下是代码:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;
namespace Read_And_Write_To_Binary
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void btnSave_Click(object sender, EventArgs e)
{
SaveFileDialog SaveFileDialog = new SaveFileDialog();
SaveFileDialog.Title = "Save As...";
SaveFileDialog.Filter = "Binary File (*.bin)|*.bin";
SaveFileDialog.InitialDirectory = @"C:\";
if (SaveFileDialog.ShowDialog() == DialogResult.OK)
{
FileStream fs = new FileStream(SaveFileDialog.FileName, FileMode.Create);
// Create the writer for data.
BinaryWriter bw = new BinaryWriter(fs);
string Name = Convert.ToString(txtName.Text);
int Age = Convert.ToInt32(txtAge.Text);
bw.Write(Name);
bw.Write(Age);
fs.Close();
bw.Close();
}
}
private void btnOpen_Click(object sender, EventArgs e)
{
OpenFileDialog OpenFileDialog = new OpenFileDialog();
OpenFileDialog.Title = "Open File...";
OpenFileDialog.Filter = "Binary File (*.bin)|*.bin";
OpenFileDialog.InitialDirectory = @"C:\";
if (OpenFileDialog.ShowDialog() == DialogResult.OK)
{
FileStream fs = new FileStream(OpenFileDialog.FileName, FileMode.Create);
BinaryReader br = new BinaryReader(fs);
lblName.Text = br.ReadString();
lblAge.Text = br.ReadInt32();
fs.Close();
br.Close();
}
}
}
}
答案 0 :(得分:3)
您正在使用FileMode.Create
来阅读该文件。
您应该使用FileMode.Open
代替。
FileStream fs = new FileStream(SaveFileDialog.FileName, FileMode.Open);
当您打开用于创建文件的流时,将重写现有文件,因此您将获得此异常,因为文件中没有可用数据。
答案 1 :(得分:1)
阅读文件时请勿使用FileMode.Create
,请使用FileMode.Open
。从the documentation开始FileMode.Create
(强调我的):
指定操作系统应创建新文件。 如果文件已存在,则会被覆盖。 ... FileMode.Create等同于请求如果文件不存在,则使用CreateNew;否则,请使用截断。
正如其名称所示,Truncate将文件截断为零字节长:
指定操作系统应打开现有文件。打开文件时,应该截断它,使其大小为零字节。