Skip to main content
Email Password   helpLost your password?

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:

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.

You must Sign In to use this message board.
 
 
Per page   
 FirstPrevNext
GeneralMost Excellent Pin
campinas
17:38 5 Feb '07  
GeneralCool example! There is also an example in MSDN... Pin
SecondNature
15:28 21 Dec '06  
GeneralVery Good Pin
kignatov
5:35 19 Apr '05  
Generalusing tatement Pin
Santiago Corredoira
2:54 26 Sep '04  
GeneralRe: using tatement Pin
Judah Himango
12:36 29 Sep '04  
GeneralWhen the strings contain HTML... Pin
Anonymous
20:29 3 Aug '04  
GeneralVery Useful Pin
Colin Angus Mackay
12:35 18 Jun '04  


Last Updated 15 Jun 2004 | Advertise | Privacy | Terms of Use | Copyright © CodeProject, 1999-2009