web-dev-qa-db-ja.com

DataContractSerializerを使用してシリアル化するが、逆シリアル化できない

次の2つの機能があります。

public static string Serialize(object obj)
{
    DataContractSerializer serializer = new DataContractSerializer(obj.GetType());
    MemoryStream memoryStream = new MemoryStream();
    serializer.WriteObject(memoryStream, obj);
    return Encoding.UTF8.GetString(memoryStream.GetBuffer());
}

public static object Deserialize(string xml, Type toType)
{
    MemoryStream memoryStream = new MemoryStream(Encoding.UTF8.GetBytes(xml));
   // memoryStream.Position = 0L;
    XmlDictionaryReader reader = XmlDictionaryReader.CreateTextReader(memoryStream, Encoding.UTF8, new XmlDictionaryReaderQuotas(), null);
    DataContractSerializer dataContractSerializer = new DataContractSerializer(toType);
    return dataContractSerializer.ReadObject(reader);
}

最初のものは、オブジェクトをxml文字列にシリアライズするようです。 XMLは有効で、壊れたタグ、先頭または末尾に空白がないなどのように見えます。2番目の関数は、XML文字列を逆シリアル化してオブジェクトに戻したくありません。最後の行で私は得る:

タイプ[MY OBJECT TYPE HERE]のオブジェクトの逆シリアル化でエラーが発生しました。ルートレベルのデータが無効です。行1、位置1。

何が間違っていますか? Deserialize関数を数回書き換えてみましたが、常に同じ種類のエラーのようです。ありがとうございました!

ああ、これが私が2つの関数を呼び出す方法です:

SomeObject so = new SomeObject();
string temp = SerializationManager.Serialize(so);
so = (SomeObject)SerializationManager.Deserialize(temp, typeof(SomeObject));
63
Dimskiy

ここに私がいつもやってきた方法があります:

    public static string Serialize(object obj) {
        using(MemoryStream memoryStream = new MemoryStream())
        using(StreamReader reader = new StreamReader(memoryStream)) {
            DataContractSerializer serializer = new DataContractSerializer(obj.GetType());
            serializer.WriteObject(memoryStream, obj);
            memoryStream.Position = 0;
            return reader.ReadToEnd();
        }
    }

    public static object Deserialize(string xml, Type toType) {
        using(Stream stream = new MemoryStream()) {
            byte[] data = System.Text.Encoding.UTF8.GetBytes(xml);
            stream.Write(data, 0, data.Length);
            stream.Position = 0;
            DataContractSerializer deserializer = new DataContractSerializer(toType);
            return deserializer.ReadObject(stream);
        }
    }
136
Ray Vernagus

他の解決策は次のとおりです。

public static T Deserialize<T>(string rawXml)
{
    using (XmlReader reader = XmlReader.Create(new StringReader(rawXml)))
    {
        DataContractSerializer formatter0 = 
            new DataContractSerializer(typeof(T));
        return (T)formatter0.ReadObject(reader);
    }
}

1つのコメント:生のxmlに次が含まれることが時々あります:

<?xml version="1.0" encoding="utf-16"?>

もちろん、他の例で使用されているUTF8エンコードは使用できません。

35
rudolf_franek

私は次のことをすることになり、それは動作します。

public static string Serialize(object obj)
{
    using (MemoryStream memoryStream = new MemoryStream())
    {
        DataContractSerializer serializer = new DataContractSerializer(obj.GetType());
        serializer.WriteObject(memoryStream, obj);
        return Encoding.UTF8.GetString(memoryStream.ToArray());
    }
}

public static object Deserialize(string xml, Type toType)
{
    using (MemoryStream memoryStream = new MemoryStream(Encoding.UTF8.GetBytes(xml)))
    {
        XmlDictionaryReader reader = XmlDictionaryReader.CreateTextReader(memoryStream, Encoding.UTF8, new XmlDictionaryReaderQuotas(), null);
        DataContractSerializer serializer = new DataContractSerializer(toType);
        return serializer.ReadObject(reader);
    }
}

大きな問題は、stream.GetBuffer()を呼び出すときのSerialize関数にあったようです。 stream.ToArray()の呼び出しは機能しているようです。

33
Dimskiy