C# - How to xml deserialize object itself? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T10:16:34Zhttp://stackoverflow.com/feeds/question/1081325http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081325/c-how-to-xml-deserialize-object-itself1C# - How to xml deserialize object itself? david.healed2009-07-04T02:05:55Z2009-07-07T11:14:44Z
<pre><code>public class Options
{
public FolderOption FolderOption { set; get; }
public Options()
{
FolderOption = new FolderOption();
}
public void Save()
{
XmlSerializer serializer = new XmlSerializer(typeof(Options));
TextWriter textWriter = new StreamWriter(@"C:\Options.xml");
serializer.Serialize(textWriter, this);
textWriter.Close();
}
public void Read()
{
XmlSerializer deserializer = new XmlSerializer(typeof(Options));
TextReader textReader = new StreamReader(@"C:\Options.xml");
//this = (Options)deserializer.Deserialize(textReader);
textReader.Close();
}
}
}
</code></pre>
<p>I managed to Save without problem, all members of FolderOption are deserialized. But the problem is how to read it back? The line - //this = (Options)deserializer.Deserialize(textReader); won't work. </p>
<p>Edit: Any solution to this problem? Can we achieve the same purpose without assigning to this? That is deserialize Options object back into Option. I am lazy to do it property by property. Performing on the highest level would save of lot of effort.</p>
http://stackoverflow.com/questions/1081325/c-how-to-xml-deserialize-object-itself/1081333#1081333-1Answer by eed3si9n for C# - How to xml deserialize object itself? eed3si9n2009-07-04T02:10:42Z2009-07-04T02:20:00Z<p>See <a href="http://msdn.microsoft.com/en-us/library/system.xml.serialization.xmlserializer.deserialize%28VS.71%29.aspx" rel="nofollow">XmlSerializer.Deserialize Method</a>: You could create a static method like the following:</p>
<pre><code> public static Options DeserializeFromFile(string filename) {
// Create an instance of the XmlSerializer specifying type and namespace.
XmlSerializer serializer = new XmlSerializer(typeof(Options));
// A FileStream is needed to read the XML document.
using (FileStream fs = new FileStream(filename, FileMode.Open)) {
XmlReader reader = new XmlTextReader(fs);
return (Options) serializer.Deserialize(reader);
} // using
}
</code></pre>
<p>The above can be called as:</p>
<pre><code> Options foo = Options.DeserializeFromFile(@"C:\Options.xml");
</code></pre>
http://stackoverflow.com/questions/1081325/c-how-to-xml-deserialize-object-itself/1081336#10813364Answer by John Saunders for C# - How to xml deserialize object itself? John Saunders2009-07-04T02:12:28Z2009-07-04T02:12:28Z<p>An object cannot deserialize itself, by definition: it already exists, and deserialization creates a new instance of the type.</p>
<p>It sometimes makes sense to create a new, empty instance of a class, then fill it in with information brought in from XML. The instance could also be "almost empty". You might do this, for instance, in order to load user preferences, or in general, to set the instance back up to the way it used to be. The "empty" or "near empty" state of the instance would be a valid state for the class: it just wouldn't know what state it used to be in before it was persisted.</p>
<p><hr /></p>
<p>Also, I recommend you get into the habit of implementing "using" blocks:</p>
<pre><code>public void Save()
{
XmlSerializer serializer = new XmlSerializer(typeof(Options));
using (TextWriter textWriter = new StreamWriter(@"C:\Options.xml"))
{
serializer.Serialize(textWriter, this);
// no longer needed: textWriter.Close();
}
}
public void Read()
{
XmlSerializer deserializer = new XmlSerializer(typeof(Options));
using (TextReader textReader = new StreamReader(@"C:\Options.xml"))
{
// no longer needed: textReader.Close();
}
}
</code></pre>
<p>This will ensure that the TextReaders are disposed of even if an exception is thrown. That's why the Close calls are no longer needed.</p>
http://stackoverflow.com/questions/1081325/c-how-to-xml-deserialize-object-itself/1081355#10813553Answer by amazedsaint for C# - How to xml deserialize object itself? amazedsaint2009-07-04T02:30:07Z2009-07-07T11:14:44Z<p>This will work if your Options type is a struct, as you can a alter a struct itself.</p>
<p>If Options is a class (reference type), you can't assign to the current instance of a reference type with in that instance. Suggesting you to write a helper class, and put your Read and Save methods there, like this</p>
<pre><code> public class XmlSerializerHelper<T>
{
public Type _type;
public XmlSerializerHelper()
{
_type = typeof(T);
}
public void Save(string path, object obj)
{
using (TextWriter textWriter = new StreamWriter(path))
{
XmlSerializer serializer = new XmlSerializer(_type);
serializer.Serialize(textWriter, obj);
}
}
public T Read(string path)
{
T result;
using (TextReader textReader = new StreamReader(path))
{
XmlSerializer deserializer = new XmlSerializer(_type);
result = (T)deserializer.Deserialize(textReader);
}
return result;
}
}
</code></pre>
<p>And then consume it from your caller, to read and save objects, instead of trying it from the class.</p>
<pre><code>//In the caller
var helper=new XmlSerializerHelper<Options>();
var obj=new Options();
//Write and read
helper.Save("yourpath",obj);
obj=helper.Read("yourpath");
</code></pre>
<p>And put the XmlSerializerHelper in your Util's namespace, it is reusable and will work with any type.</p>
http://stackoverflow.com/questions/1081325/c-how-to-xml-deserialize-object-itself/1081375#10813753Answer by Joel Coehoorn for C# - How to xml deserialize object itself? Joel Coehoorn2009-07-04T02:41:30Z2009-07-04T02:41:30Z<p>Build your <code>.Read()</code> method as a static function that returns the read object:</p>
<pre><code>public static Options Read(string path)
{
XmlSerializer deserializer = new XmlSerializer(typeof(Options));
using (TextReader textReader = new StreamReader(path))
{
return (Options)deserializer.Deserialize(textReader);
}
}
</code></pre>
<p>Then change your calling code so rather than something like this:</p>
<pre><code>Options myOptions = new Options();
myOptions.Read(@"C:\Options.xml");
</code></pre>
<p>You do something like this:</p>
<pre><code>Options myOptions = Options.Read(@"C:\Options.xml");
</code></pre>