.NET Tip: Return File Contents as a String Oakland CA

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

Propertyware
(415) 455-2400
575 Market St., Ste. 375
San Francisco, CA
International Business Machines Corporation
(415) 545-2000
425 Market St.
San Francisco, CA
ClearKite
(866) 894-8090
355 Berry St., Ste. 240
San Francisco, CA
Speller & Company LLC
415-848-3022
795 Folsom Street
San Francisco, CA
Mindjet Corporation
(415) 229-4200
1160 Battery St., 4th Flr
San Francisco, CA
OpCon Technologies, Inc.
(415) 439-5389
50 California St., Ste. 1500
San Francisco, CA
Science Applications International Corporation (SAIC)
(415) 202-1800
1275 Columbus Ave.
San Francisco, CA
Microsoft Corporation
(415) 972-6400
835 Market St., Ste. 700
San Francisco, CA
San Francisco Technologies, Inc.
(866) 992-2543
123 10th St.
San Francisco, CA
Streetline Networks
(650) 714-5528
995 Market St., 16th Flr.
San Francisco, CA

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

Propertyware

(415) 455-2400
575 Market St., Ste. 375
San Francisco, CA

Related Local Events
MACWORLD 2010
Dates: 1/4/2010 - 1/8/2010
Location: Moscone Convention Center
San Francisco, CA
View Details

Informex USA
Dates: 2/16/2010 - 2/19/2010
Location: Moscone Convention Center, San Francisco
San Francisco, CA
View Details

Advanced Lithography
Dates: 2/21/2010 - 2/26/2010
Location: San Jose Convention Center
San Jose, CA
View Details

Contraceptive Technology Conference : San Francisco
Dates: 3/24/2010 - 3/27/2010
Location: Hyatt Regency Hotel
San Francisco, CA
View Details

Web 2.0 Summit
Dates: 10/20/2009 - 10/22/2009
Location: Westin San Francisco Market Street
San Francisco, CA
View Details