将memorystream对象序列化为字符串

时间:2011-05-28 11:48:34

标签: c# xml-serialization memorystream

现在我正在使用XmlTextWriter将MemoryStream对象转换为字符串。但我不知道是否有更快的方法将内存流序列化为字符串。

我按照此处提供的代码进行序列化 - http://www.eggheadcafe.com/articles/system.xml.xmlserialization.asp

被修改

Stream to String

ms.Position = 0;
using (StreamReader sr = new StreamReader(ms))
{
    string content = sr.ReadToEnd();
    SaveInDB(ms);
}

要流式传输的字符串

string content = GetFromContentDB();
byte[] byteArray = Encoding.ASCII.GetBytes(content);
MemoryStream ms = new MemoryStream(byteArray); 
byte[] outBuf = ms.GetBuffer(); //error here

2 个答案:

答案 0 :(得分:25)

using(MemoryStream stream = new MemoryStream()) {
   stream.Position = 0;
   var sr = new StreamReader(stream);
   string myStr = sr.ReadToEnd();
}

使用MemoryStream(byte[])构造函数时,无法使用GetBuffer。

MSDN引用:

  

此构造函数不公开   潜在的流。 GetBuffer抛出   UnauthorizedAccessException。

您必须使用此constructor并设置publiclyVisible = true才能使用GetBuffer

答案 1 :(得分:0)

在VB.net中我使用了这个

  

Dim TempText = System.Text.Encoding.UTF8.GetString(TempMemoryStream.ToArray())

C#中的

可以申请