.NET Tip: Return File Contents as a String Dallas TX

What do you do when you need to read in an entire file and process it as a string? Here is a simple solution.

Local Companies

Videotex Systems
972 231 9200 x124
10255 Miller Road
Dallas, TX
elKore Inc
1-877-355-6731
12225 Greenville Avenue
Dallas, TX
Information Processing Corporation
972-404-9244
13747 Montfort, Suite 300
Dallas, TX
Maxtrus Micro
(800) 910-2380
4781 Snow Dr
Mesquite, TX
Spatial Data Inc.
972-791-0911
4545 Fuller Drive
Irving, TX
C. Pitman Baker & Associates
972-579-1642 X 227
1431 Greenway Dr.
Irving, TX
In2 Solutions Inc
(972) 494-7400
3534 W Walnut St
Garland, TX
P O Express Inc
(972) 272-0603
3717 Burning Tree Ln
Garland, TX
Sixred, Inc.
(972) 365-3437
15950 North Dallas Parkway
Dallas, TX
Freeman Software
(972) 840-1119
506 Valencia Dr
Garland, TX

provided by: 
Originally published at Internet.com


The applications I've been working on lately send a lot of email notifications out as the status of the application and monitored devices change. There are a handful of different email messages that could be sent. I wanted a means to store the bodies of these emails in a manner that would be easy to update without me having to be involved. I considered storing them in the database, but that would not be very easy for the person responsible for maintaining the body of the email. Instead, I chose to store the body of each email in a file. For my application, this had the right balance of flexibility and ease of use. When I found myself starting to write the code to read in the body of an email more than, once I created a method that would read in the entire file and return it as a string. I then can easily process the body text if needed and send it out in an email. Here is the code to read a file: public static string GetFileContents(string FileName) { StreamReader sr = null; string FileContents = null; try { FileStream fs = new FileStream(FileName, FileMode.Open, FileAccess.Read); sr = new StreamReader(fs); FileContents = sr.ReadToEnd(); } finally { if(sr != null) sr.Close(); } return FileContents; }

This should be fairly strightforward to follow. First, a FileStream is created to control access to the file. Next, a StreamReader is created and associated with the FileStream. The ReadToEnd() method is then called to retrieve the entire contents of the file and store it in a local string variable. If the StreamReader was able to open the file successfully, it is closed and finally, the local string holding the contents of the file is returned from the method.

I added this simple method as a static method in my utility class. Now, I have easy access to reading the contents of a file from anywhere in my applications.

About the Author

Jay Miller is a Software Engineer with Electronic Tracking Systems, a company dedicated to robbery prevention, apprehension, and recovery based in Carrollton, Texas. Jay has been working with .NET since the release of the first beta and is co-author of Learn Microsoft Visual Basic.Net In a Weekend. Jay can be reached via email at jmiller@sm-ets.com.

Author: Jay Miller

Read article at Internet.com site

Featured Local Company

Videotex Systems

972 231 9200 x124
10255 Miller Road
Dallas, TX
http://www.videotexsystems.com/

Related Local Events
Unconventional Gas Conference & Exhibition
Dates: 9/29/2009 - 10/1/2009
Location: Fort Worth Convention Center
Fort Worth, TX
View Details

Tech Titans Fast Tech Awards Gala
Dates: 8/28/2009 - 8/28/2009
Location: Renaissance Dallas Richardson Hotel
Richardson, TX
View Details

AHS International 65th Annual Forum and Technology Display
Dates: 5/27/2009 - 5/29/2009
Location: Gaylord Texan Resort & Convention Center
Grapevine, TX
View Details