Voglio serializzare gli oggetti su stringhe e viceversa.
Usiamo protobuf-net per trasformare un oggetto in un flusso e viceversa, con successo.
Tuttavia, esegui lo streaming su stringa e ritorno ... non è così efficace. Dopo aver attraversato StreamToString
e StringToStream
, il nuovo Stream
non è deserializzato da protobuf-net; solleva Arithmetic Operation resulted in an Overflow
un'eccezione. Se deserializziamo lo stream originale, funziona.
I nostri metodi:
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);
}
Il nostro codice di esempio utilizza questi due:
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);