+ Reply to Thread
Results 1 to 9 of 9

Thread: Visual Studio 2008: C# Reading Files

  1. #1
    Jordan Guest

    Visual Studio 2008: C# Reading Files

    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:

    Code:
    using System.IO;
    directly under:

    Code:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    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:
    // Assign the filename
    string fileName = "c:\\UserNames.txt";
    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.

    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:

    Code:
    // Create reader & open file
    TextReader textReader = new StreamReader(fileName);
    Add this directly below the fileName string you set earlier.

    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:

    Code:
    // Read text to end of file
    Console.WriteLine("Reading {0} - {1}", 
    textReader.GetType().Name, textReader.ReadToEnd());
    Closing the Stream
    Once you are done using your file streams it is important to close them. This frees up the file and memory. Added:

    Code:
    // close the stream
    textReader.Close();
    Final Code
    Your code should look like this:

    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();
            }
        }
    }
    Running the Code
    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:

    Code:
    // Accept User Input
    Console.Read();
    Your code should now look similar to this:

    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();
            }
        }
    }
    Build and Execute your program (F5 or Green Arrow).

    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.

  2. CODECALL Circuit advertisement

     
  3. #2
    Join Date
    Jul 2006
    Location
    Amherst, New York, United States
    Posts
    6,277
    Blog Entries
    26
    Rep Power
    20
    sweet tutorial

  4. #3
    Johnnyboy's Avatar
    Johnnyboy is offline Learning Programmer
    Join Date
    Nov 2005
    Location
    NC
    Posts
    56
    Rep Power
    0

    Re: Visual Studio 2008: C# Reading Files

    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.

  5. #4
    Join Date
    Mar 2008
    Location
    The North Pole
    Posts
    13,174
    Blog Entries
    13
    Rep Power
    114

    Re: Visual Studio 2008: C# Reading Files

    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.

    Quote Originally Posted by Jordan View Post
    Good members, like yourself, stick around and post for ages to come!
    Mr. Xav | Blog | Forums

  6. #5
    Jordan Guest

    Re: Visual Studio 2008: C# Reading Files

    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.

  7. #6
    Johnnyboy's Avatar
    Johnnyboy is offline Learning Programmer
    Join Date
    Nov 2005
    Location
    NC
    Posts
    56
    Rep Power
    0

    Re: Visual Studio 2008: C# Reading Files

    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.

  8. #7
    Join Date
    Mar 2008
    Location
    The North Pole
    Posts
    13,174
    Blog Entries
    13
    Rep Power
    114

    Re: Visual Studio 2008: C# Reading Files

    Quote Originally Posted by Jordan View Post
    Sounds like an excellent tutorial idea though.
    Is that a hint?

    Quote Originally Posted by Jordan View Post
    Good members, like yourself, stick around and post for ages to come!
    Mr. Xav | Blog | Forums

  9. #8
    Jordan Guest

    Re: Visual Studio 2008: C# Reading Files

    Maybe....

  10. #9
    Join Date
    Mar 2008
    Location
    The North Pole
    Posts
    13,174
    Blog Entries
    13
    Rep Power
    114

    Re: Visual Studio 2008: C# Reading Files

    We'll see. Perhaps for the CC T-shirt...

    Quote Originally Posted by Jordan View Post
    Good members, like yourself, stick around and post for ages to come!
    Mr. Xav | Blog | Forums

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 2 users browsing this thread. (0 members and 2 guests)

Similar Threads

  1. Visual Studio 2008
    By starzgurl342 in forum C# Programming
    Replies: 8
    Last Post: 03-26-2010, 09:22 AM
  2. IIs in Visual Studio 2008
    By zkazemi in forum ASP, ASP.NET and Coldfusion
    Replies: 3
    Last Post: 03-09-2010, 06:58 AM
  3. Importing source files into Microsoft visual studio 2008???
    By david.dda in forum Visual Basic Programming
    Replies: 5
    Last Post: 10-02-2009, 08:47 AM
  4. Replies: 3
    Last Post: 10-03-2008, 03:21 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts