C# – Reading and Writing to Text Files

  • Post author:
  • Post category:C#
  • Post comments:1 Comment
C# - Reading and Writing to Text Files

The C# Reading and Writing to Text Files is StreamReader and StreamWriter classes are used for reading from and writing data to text files. These classes inherit from the abstract base class Stream, which supports reading and writing bytes into a file stream.

The StreamReader Class are C# Reading and Writing to Text Files

The StreamReader class also inherits from the abstract base class TextReader that represents a reader for reading a series of characters. The following table describes some of the commonly used methods of the StreamReader class −

Sr.No.Method & Description
1public override void Close()It closes the StreamReader object and the underlying stream and releases any system resources associated with the reader.
2public override int Peek()Returns the next available character but does not consume it.
3public override int Read()Reads the next character from the input stream and advances the character position by one.

Example

The following example demonstrates reading a text file named Jamaica.txt. The file reads −

Down the way where the nights are gay
And the sun shines daily on the mountain top
I took a trip on a sailing ship
And when I reached Jamaica
I made a stop
using System;
using System.IO;

namespace FileApplication {
   class Program {
      static void Main(string[] args) {
         try {
            // Create an instance of StreamReader to read from a file.
            // The using statement also closes the StreamReader.
            using (StreamReader sr = new StreamReader("c:/jamaica.txt")) {
               string line;

               // Read and display lines from the file until 
               // the end of the file is reached. 
               while ((line = sr.ReadLine()) != null) {
                  Console.WriteLine(line);
               }
            }
         } catch (Exception e) {
            // Let the user know what went wrong.
            Console.WriteLine("The file could not be read:");
            Console.WriteLine(e.Message);
         }
         Console.ReadKey();
      }
   }
}

Guess what it displays when you compile and run the program!

The StreamWriter Class

The StreamWriter class inherits from the abstract class TextWriter that represents a writer, which can write a series of characters.

The following table describes the most commonly used methods of this class −

Sr.No.Method & Description
1public override void Close()Closes the current StreamWriter object and the underlying stream.
2public override void Flush()Clears all buffers for the current writer and causes any buffered data to be written to the underlying stream.
3public virtual void Write(bool value)Writes the text representation of a Boolean value to the text string or stream. (Inherited from TextWriter.)
4public override void Write(char value)Writes a character to the stream.
5public virtual void Write(decimal value)Writes the text representation of a decimal value to the text string or stream.
6public virtual void Write(double value)Writes the text representation of an 8-byte floating-point value to the text string or stream.
7public virtual void Write(int value)Writes the text representation of a 4-byte signed integer to the text string or stream.
8public override void Write(string value)Writes a string to the stream.
9public virtual void WriteLine()Writes a line terminator to the text string or stream.

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

Example

The following example demonstrates writing text data into a file using the StreamWriter class −

using System;
using System.IO;

namespace FileApplication {
   class Program {
      static void Main(string[] args) {
         string[] names = new string[] {"Zara Ali", "Nuha Ali"};
         
         using (StreamWriter sw = new StreamWriter("names.txt")) {

            foreach (string s in names) {
               sw.WriteLine(s);
            }
         }
         
         // Read and show each line from the file.
         string line = "";
         using (StreamReader sr = new StreamReader("names.txt")) {
            while ((line = sr.ReadLine()) != null) {
               Console.WriteLine(line);
            }
         }
         Console.ReadKey();
      }
   }
}

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

Zara Ali
Nuha Ali

Next Topic – Click Here

This Post Has One Comment

Leave a Reply