我想将对象序列化为字符串,然后返回。
我们使用protobuf-net成功地将一个对象转换成一个流。
然而,流到字符串和返回…不太成功。在经过StreamToString和StringToStream之后,新的stream不是 通过protobuf-net反序列化;它会引发算术操作,导致溢出异常。如果我们反序列化原始流,它就可以工作。
我们的方法:
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);