C# program to read data from file character by character till the end of the file

Here, we are going to learn how to read data from file character by character till the end of the file in C#?
Submitted by Nidhi, on September 19, 2020

Here we will open an already existing file and then read the content of the file character by character till the end of the file and print data on the console screen.

Program:

The source code to read data from file character by character until the end of the file is given below. The given program is compiled and executed successfully on Microsoft Visual Studio.

//C# program to read data from file 
//character by character till the end of the file.

using System;
using System.IO;
using System.Text;

class Demo
{
    static void Main()
    {
        Stream s = new FileStream(@"d:\data.txt", FileMode.Open);
        int val = 0;
        char ch;

        while (true)
        {
            val = s.ReadByte();

            if (val < 0)
                break;
            ch = (char)val;
            Console.Write(ch);
        }
        Console.WriteLine();
    }
}

Output:

This is a bag.
This is a bat.
This is a ball.
Press any key to continue . . .

Explanation:

Here, we created a class Demo that contains the Main() method. The Main() method is the entry point of the program, here we opened an already existing file (d:\data.txt) and then read the content of the file using ReadByte() method character by character till the end of the file, but ReadByte() method returns integer value then we need to typecast it into character type, and print data on the console screen.

C# Files Programs »


ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT


Comments and Discussions!




Languages: » C » C++ » C++ STL » Java » Data Structure » C#.Net » Android » Kotlin » SQL
Web Technologies: » PHP » Python » JavaScript » CSS » Ajax » Node.js » Web programming/HTML
Solved programs: » C » C++ » DS » Java » C#
Aptitude que. & ans.: » C » C++ » Java » DBMS
Interview que. & ans.: » C » Embedded C » Java » SEO » HR
CS Subjects: » CS Basics » O.S. » Networks » DBMS » Embedded Systems » Cloud Computing
» Machine learning » CS Organizations » Linux » DOS
More: » Articles » Puzzles » News/Updates

© https://www.includehelp.com some rights reserved.