C# – Reading from and Writing into Binary files

  • Post author:
  • Post category:C#
  • Post comments:2 Comments
C# - Reading from and Writing into Binary files

C# Reading from and Writing into Binary files are the BinaryReader and BinaryWriter classes are used for reading from and writing to a binary file.

BinaryReader Class Are C# Reading from and Writing into Binary files

The BinaryReader class is used to read binary data from a file. A BinaryReader object is created by passing a FileStream object to its constructor.

The following table describes commonly used methods of the BinaryReader class.

Sr.No.Method & Description
1public override void Close()It closes the BinaryReader object and the underlying stream.
2public virtual int read()Reads the characters from the underlying stream and advances the current position of the stream.
3public virtual bool ReadBoolean()Reads a Boolean value from the current stream and advances the current position of the stream by one byte.
4public virtual byte ReadByte()Reads the next byte from the current stream and advances the current position of the stream by one byte.
5public virtual byte[] ReadBytes(int count)Reads the specified number of bytes from the current stream into a byte array and advances the current position by that number of bytes.
6public virtual char ReadChar()Reads the next character from the current stream and advances the current position of the stream in accordance with the Encoding used and the specific character being read from the stream.
7public virtual char[] ReadChars(int count)Reads the specified number of characters from the current stream, returns the data in a character array, and advances the current position in accordance with the Encoding used and the specific character being read from the stream.
8public virtual double ReadDouble()Reads an 8-byte floating-point value from the current stream and advances the current position of the stream by eight bytes.
9public virtual int ReadInt32()Reads a 4-byte signed integer from the current stream and advances the current position of the stream by four bytes.
10public virtual string ReadString()Reads a string from the current stream. The string is prefixed with the length, encoded as an integer seven bits at a time.

The BinaryWriter Class

The BinaryWriter class is used to write binary data to a stream. A BinaryWriter object is created by passing a FileStream object to its constructor.

The following table describes commonly used methods of the BinaryWriter class.

Sr.No.Function & Description
1public override void Close()It closes the BinaryWriter object and the underlying stream.
2public virtual void Flush()Clears all buffers for the current writer and causes any buffered data to be written to the underlying device.
3public virtual long Seek(int offset, SeekOrigin origin)Sets the position within the current stream.
4public virtual void Write(bool value)Writes a one-byte Boolean value to the current stream, with 0 representing false and 1 representing true.
5public virtual void Write(byte value)Writes an unsigned byte to the current stream and advances the stream position by one byte.
6public virtual void Write(byte[] buffer)Writes a byte array to the underlying stream.
7public virtual void Write(char ch)Writes a Unicode character to the current stream and advances the current position of the stream in accordance with the Encoding used and the specific characters being written to the stream.
8public virtual void Write(char[] chars)Writes a character array to the current stream and advances the current position of the stream in accordance with the Encoding used and the specific characters being written to the stream.
9public virtual void Write(double value)Writes an eight-byte floating-point value to the current stream and advances the stream position by eight bytes.
10public virtual void Write(int value)Writes a four-byte signed integer to the current stream and advances the stream position by four bytes.
11public virtual void Write(string value)Writes a length-prefixed string to this stream in the current encoding of the BinaryWriter and advances the current position of the stream in accordance with the encoding used and the specific characters being written to the stream.

For a complete list of methods, please visit Microsoft C# documentation.

Example

The following example demonstrates reading and writing binary data

using System;
using System.IO;

namespace BinaryFileApplication {
   class Program {
      static void Main(string[] args) {
         BinaryWriter bw;
         BinaryReader br;
         
         int i = 25;
         double d = 3.14157;
         bool b = true;
         string s = "I am happy";
         
         //create the file
         try {
            bw = new BinaryWriter(new FileStream("mydata", FileMode.Create));
         } catch (IOException e) {
            Console.WriteLine(e.Message + "\n Cannot create file.");
            return;
         }
         
         //writing into the file
         try {
            bw.Write(i);
            bw.Write(d);
            bw.Write(b);
            bw.Write(s);
         } catch (IOException e) {
            Console.WriteLine(e.Message + "\n Cannot write to file.");
            return;
         }
         bw.Close();
         
         //reading from the file
         try {
            br = new BinaryReader(new FileStream("mydata", FileMode.Open));
         } catch (IOException e) {
            Console.WriteLine(e.Message + "\n Cannot open file.");
            return;
         }
         
         try {
            i = br.ReadInt32();
            Console.WriteLine("Integer data: {0}", i);
            d = br.ReadDouble();
            Console.WriteLine("Double data: {0}", d);
            b = br.ReadBoolean();
            Console.WriteLine("Boolean data: {0}", b);
            s = br.ReadString();
            Console.WriteLine("String data: {0}", s);
         } catch (IOException e) {
            Console.WriteLine(e.Message + "\n Cannot read from file.");
            return;
         }
         br.Close();
         Console.ReadKey();
      }
   }
}

When the above code is compiled and executed, it produces the following result −

Integer data: 25
Double data: 3.14157
Boolean data: True
String data: I am happy

Next Topic – Click Here

This Post Has 2 Comments

Leave a Reply