Click here to Skip to main content
6,595,444 members and growing! (18,720 online)
Email Password   helpLost your password?
Languages » C# » General     Intermediate

Create String Variables from Embedded Resources Files

By Michael McKechney

Use embedded text files as the source for populating large string variables.
C++, C#.NET 1.1, Win2K, WinXP, Win2003, MFC, VS.NET2003, Dev
Posted:15 Jun 2004
Views:49,574
Bookmarked:26 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
18 votes for this article.
Popularity: 5.60 Rating: 4.46 out of 5

1

2
1 vote, 5.6%
3
6 votes, 33.3%
4
11 votes, 61.1%
5

Introduction

As I have written before in a previous article, creating large string variables can be a dull but necessary part of coding. Whether it's a bit of JavaScript or HTML for a web page, some SQL to create a database table or just a long bit of text for a tool tip, large strings are needed.

In the previous article, the included utility used a text file as a source, and wrote a code snippet that created and populated a string variable for you to use in your own code. This article takes a different approach by embedding the text file in your assembly and extracting it when needed.

The main advantage to this approach is maintainability. Since the text is not cut up by concatenation or StringBuilder.Append statements, it's easy to read and edit.

Using the code

Setting up the text file can be accomplished in 3 easy steps:

  1. Add a text file to your solution.
  2. Right-click on the file in the Solution Explorer and select "properties" to display the Properties window for the file.
  3. Change the "Build Action" to "Embedded Resource".

Once this is done, your file will be embedded in the assembly the next time you compile. Its contents can be read back using the following GetFromResources method and used to populate your string variable to be used in your application.

The code consists of a small method to extract the resource file as a string. Using reflection, a reference to the current assembly is created. Then, with the manifest reader method GetManifestResourceStream, the text file is read and returned as a string. That's it!

internal string GetFromResources(string resourceName)
{  
   Assembly assem = this.GetType().Assembly;   
   using( Stream stream = assem.GetManifestResourceStream(resourceName) )   
   {
     try      
     { 
       using( StreamReader reader = new StreamReader(stream) )         
       {
         return reader.ReadToEnd();         
       }
     }     
     catch(Exception e)      
     {
       throw new Exception("Error retrieving from Resources. Tried '" 
                                + resourceName+"'\r\n"+e.ToString());      
     }
   }
}

Using the method to populate a string variable is accomplished in one line of code:

string quote = 
  new EmbeddedResourceTextReader().GetFromResources
  ("McKechney.EmbeddedResouceTextExample.Folder.Shakespeare.txt");

Key Points to Remember:

  • The resourceName is case sensitive.
  • The resourceName must be the fully qualified name of the file: Default Namespace + folder name(s) + filename (with extension if applicable).
  • Your code file will need to have using statements for System.Reflection and System.IO. If you only change the text of an embedded resource file, you will need to rebuild your project because Visual Studio does not recognize the change as a code change worthy of recompiling.

I want to stress the last key point again. Several times I have changed only the embedded resource file and run my application only to see the old text returned. This can be pretty frustrating, especially if the expected change is buried deep in your application. If you remember that you need to rebuild your application after an embedded resource change, you'll be a much happier programmer.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Michael McKechney


Member

Occupation: Web Developer
Location: United States United States

Other popular C# articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 7 of 7 (Total in Forum: 7) (Refresh)FirstPrevNext
GeneralMost Excellent Pinmembercampinas17:38 5 Feb '07  
GeneralCool example! There is also an example in MSDN... PinmemberSecondNature15:28 21 Dec '06  
GeneralVery Good Pinmemberkignatov5:35 19 Apr '05  
Generalusing tatement PinmemberSantiago Corredoira2:54 26 Sep '04  
GeneralRe: using tatement PinmemberJudah Himango12:36 29 Sep '04  
GeneralWhen the strings contain HTML... PinsussAnonymous20:29 3 Aug '04  
GeneralVery Useful PinmemberColin Angus Mackay12:35 18 Jun '04  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 15 Jun 2004
Editor: Smitha Vijayan
Copyright 2004 by Michael McKechney
Everything else Copyright © CodeProject, 1999-2009
Web18 | Advertise on the Code Project