我想将对象序列化为字符串,然后返回。
我们使用 protobuf-net 将对象转换为 Stream 并成功返回。
但是,Stream to string and back... 不是那么成功。经过StreamToString
and之后StringToStream
,新Stream
的没有被 protobuf-net 反序列化;它引发了一个Arithmetic Operation resulted in an Overflow
例外。如果我们反序列化原始流,它就可以工作。
我们的方法:
public static string StreamToString(Stream stream)
{
stream.Position = 0;
using (StreamReader reader = new StreamReader(stream, Encoding.UTF8))
{
return reader.ReadToEnd();
}
}
public static Stream StringToStream(string src)
{
byte[] byteArray = Encoding.UTF8.GetBytes(src);
return new MemoryStream(byteArray);
}
我们使用这两个的示例代码:
MemoryStream stream = new MemoryStream();
Serializer.Serialize<SuperExample>(stream, test);
stream.Position = 0;
string strout = StreamToString(stream);
MemoryStream result = (MemoryStream)StringToStream(strout);
var other = Serializer.Deserialize<SuperExample>(result);