In this tutorial I will show you how to read files using Visual Studio 2008 C#.
The TextReader Class (from MSDN)
TextReader is the abstract base class of StreamReader and StringReader, which read characters from streams and strings, respectively. Use these derived classes to open a text file for reading a specified range of characters, or to create a reader based on an existing stream.
Getting Started
1) Open Visual Studio 2008 and create a new Console Application using Visual C#. I've named my project ccFileRead but you can name as you like. We will be using a Console Application in order to eliminate confusion with GUI objects. This tutorial is intended to show you how to read a file.
2) Click "Start/Run" and type "notepad", press enter. We will create a txt file to read in this step. Type in several names pressing enter after each name. I used Luke, John, Jerry, Winged, TcM, Jordan. This file is also attached at the bottom of this thread. Once you have entered the names click "File/Save As". Click "My Computer" on the left hand side of the Save As dialog. Double click "Local Disk (C:)". Type "UserNames.txt" as the "File Name:" in the bottom of the dialog. Click Save.
3) Close the text file and switch back to Visual Studio 2008. You should see the default Console Application code generated by C#.
[highlight="C#"]using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ccFileRead
{
class Program
{
static void Main(string[] args)
{
}
}
}[/highlight]
Reading a Text File
The TextReader is in the System.IO namespace. The first thing you should do is add this line to the top of your program:
directly under:Code:using System.IO;
Now you will be able to use the entire IO namespace without typing out the full name. Next we want to create a string and assign it the path/name of our file:Code:using System; using System.Collections.Generic; using System.Linq; using System.Text;
Add this in the "static void Main(string[] args)" function (between the { and }). The double blackslash is required to assert a single backslash. This is because a single backslash key is defined as the escape character.Code:// Assign the filename string fileName = "c:\\UserNames.txt";
Creating the TextReader
The TextReader is defined by creating a new StreamReader and passing the file path/name to it. StreamReader is designed for character input in a particular encoding, whereas the Stream class is designed for byte input and output. Use StreamReader for reading lines of information from a standard text file.
StreamReader defaults to UTF-8 encoding unless specified otherwise, instead of defaulting to the ANSI code page for the current system. UTF-8 handles Unicode characters correctly and provides consistent results on localized versions of the operating system.
Thus you have:
Add this directly below the fileName string you set earlier.Code:// Create reader & open file TextReader textReader = new StreamReader(fileName);
Reading the File
Reading the file with a TextReader is incredibly simple. There are two methods for reading the file: ReadLine and ReadToEnd. As you may have guessed the ReadLine() method reads only one line. The ReadToEnd() reads the entire file. Since we have multiple names on different lines we need to use the ReadToEnd(). We also want to display this information to the user and print the TextReader Type (using the GetType().Name property). Add this line below the previous:
Closing the StreamCode:// Read text to end of file Console.WriteLine("Reading {0} - {1}", textReader.GetType().Name, textReader.ReadToEnd());
Once you are done using your file streams it is important to close them. This frees up the file and memory. Added:
Final CodeCode:// close the stream textReader.Close();
Your code should look like this:
Running the CodeCode:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; namespace ccFileRead { class Program { static void Main(string[] args) { // Assign the filename string fileName = "c:\\UserNames.txt"; // Create reader & open file TextReader textReader = new StreamReader(fileName); // Read text to end of file Console.WriteLine("Reading {0} - {1}", textReader.GetType().Name, textReader.ReadToEnd()); // close the stream textReader.Close(); } } }
Press F5 or click the Start Debugging (green arrow) button to build and execute your code. After your code compiles a black box (cmd prompt) appears and executes your code. Then exits before you can see the console. In order to fix this lets add a pause.
Last Minute Changes
Below "textReader.Close();" we need to pause the problem so that the output can be observed. The easiest way to do this is to accept user input. Once the user presses enter (or any other key) the code will continue to run. Add:
Your code should now look similar to this:Code:// Accept User Input Console.Read();
Build and Execute your program (F5 or Green Arrow).Code:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; namespace ccFileRead { class Program { static void Main(string[] args) { // Assign the filename string fileName = "c:\\UserNames.txt"; // Create reader & open file TextReader textReader = new StreamReader(fileName); // Read text to end of file Console.WriteLine("Reading {0} - {1}", textReader.GetType().Name, textReader.ReadToEnd()); // close the stream textReader.Close(); // Accept User Input Console.Read(); } } }
Final Output
Your program now reads the text file you create, lists the TextRead type and displays all of the user names pausing at the end to allow user input.
If you have any questions or comments please post them here.
Last edited by Jordan; 03-15-2008 at 07:11 AM.
sweet tutorial
Awesome Jordan. I've only used vb6 and .net until now. Within minutes I was able to convert this to a windows forms application instead of console and am quickly on my way in C#.
THANKS!
If anyone else was wondering, here is what Jordan did using a windows forms app and bringing up the results of a file in a messagebox.
Code:private void btnEngrave_Click(object sender, EventArgs e) { //assign the filename string fileName = "c:\\engraving.txt"; //create reader and open the file TextReader textReader = new StreamReader(fileName); // Read text to end of file MessageBox.Show(textReader.ReadToEnd()); textReader.Close(); }
Last edited by Jordan; 06-18-2008 at 12:40 PM. Reason: Added code tags
When things work the way they should it's a wonderful thing! It's the should part that gets me. visit me @ www.unseenbattle.net and drop me a line.
Is this in response to my writing files tutorials?
I must say, I would never use the StreamReader object without exception handling - while the StreamWriter simply creates a new file or overwrites as necessary, the StreamReader simply throws exceptions.
Also, the same function can be achieved simply by using IO.File.ReadAllText(), a static method that alleviates the need for any extra objects.
I believe this one was posted before yours although I can't remember. You should use try/catch on anything that throws exceptions although this isn't an exception catching tutorial so there was no need to include them (and then have to explain them) here. Sounds like an excellent tutorial idea though.
thanks guys... good stuff. and very helpful at that.
When things work the way they should it's a wonderful thing! It's the should part that gets me. visit me @ www.unseenbattle.net and drop me a line.
Maybe....![]()
There are currently 2 users browsing this thread. (0 members and 2 guests)
Bookmarks