vote up 7 vote down star

If I am given a MemoryStream that I know has been populated with a String, how do I get a String back out?

flag

79% accept rate

7 Answers

vote up 0 vote down

You can also use

ASCIIEncoding.ASCII.GetString(ms.ToArray());

I don't think this is less efficient, but I couldn't swear to it. It also lets you choose a different encoding, whereas using a StreamReader you'd have to specify that as a parameter.

link|flag
vote up 0 vote down check

This sample shows how to read and write a string to a MemoryStream.


static void Main(string[] args)
{
    using (var ms = new MemoryStream())
    {
        var sw = new StreamWriter(ms);
        sw.WriteLine("Hello World");
        // The string is currently stored in the 
        // StreamWriters buffer. Flushing the stream will 
        // force the string into the MemoryStream.
        sw.Flush();

        // If we dispose the StreamWriter now, it will close 
        // the BaseStream (which is our MemoryStream) which 
        // will prevent us from reading from our MemoryStream
        //DON'T DO THIS - sw.Dispose();

        // The StreamReader will read from the current 
        // position of the MemoryStream which is currently 
        // set at the end of the string we just wrote to it. 
        // We need to set the position to 0 in order to read 
        // from the beginning.
        ms.Position = 0;
        var sr = new StreamReader(ms);
        var myStr = sr.ReadToEnd();
        Console.WriteLine(myStr);
    }

    Console.WriteLine("Press any key to continue.");
    Console.ReadKey();
}
link|flag
vote up 0 vote down

While the first comment's code nearly gets it right, it still not quite there. The return statement will prevent the reader's dispose method from being called.

So the proper method of doing this is: Public Function GetString(ByVal memStream As MemoryStream) As String Dim tReturn as String = String.Empty ' Important to reset the stream otherwise you will just get an empty string. memStream.Position = 0 Using reader As New StreamReader(memStream) tReturn = reader.ReadToEnd() End Using Return tReturn End Function

link|flag
From msdn.microsoft.com/en-us/library/…: "the Using block guarantees disposal of the resources, no matter how you exit the block." – Brian Sep 21 '08 at 20:46
vote up 1 vote down

I would just argue your setting Position to 0 because it unnecessarily limits the function use. It states that you always want to read the string from the beginning of the stream.

EDIT: answering Alex Lyman I believe my reputation doesn't allow me to comment on answers (either that or I'm blind).

link|flag
Responding to an answer with another answer is frowned upon, better to use the "add comment" button found at the bottom of the answer. – Alex Lyman Sep 17 '08 at 0:42
vote up 0 vote down

Never quite sure if reader.close is always required. I have had issues in the past so as a rule I always do just to be on the safe side.

link|flag
If you enclose the Reader in a "using" block the IDisposable is magically taken care of and Close is called. – Scott Saad Sep 16 '08 at 23:42
vote up 15 vote down

Using a StreamReader to convert the MemoryStream to a String.

<Extension()> _
Public Function ReadAll(ByVal memStream As MemoryStream) As String
    ' Reset the stream otherwise you will just get an empty string.
    ' Remember the position so we can restore it later.
    Dim pos = memStream.Position
    memStream.Position = 0

    Dim reader As New StreamReader(memStream)
    Dim str = reader.ReadToEnd()

    ' Reset the position so that subsequent writes are correct.
    memStream.Position = pos

    Return str
End Function
link|flag
Setting the Position to 0 limits the reuse ability of the method -- it is best to let the caller manage this. What if the stream contains data prior to the string, that the caller knows how to handle? – Alex Lyman Sep 17 '08 at 0:41
The using statement will ensure that your StreamReader gets disposed, but the documentation says that StreamReader closes the underlying stream when it gets disposed. Therefore, your method closes the MemoryStream it gets passed, which is conceptually uncool for callers even if I doubt MemoryStream.Dispose does much. – Trillian Aug 28 at 22:23
You are correct. It is typically a bad idea to use the Dispose method on the stream helper classes, especially if the stream is passed into a method as a parameter. I'll update this answer. I also have a more complete answer below. – Brian Sep 2 at 18:35
vote up 7 vote down

use a StreamReader, then you can use the ReadToEnd method that returns a string.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.