我需要將xml文件反序列化爲List或Array,然後將此List或Array放大1,然後再次序列化文件,將新對象添加到此XML文件。如何反序列化XML文件,然後序列化再次添加新項目到這個文件?
我寫了類似的東西,但它不工作:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Xml;
using System.IO;
using System.Xml.Serialization;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
public void deserialize()
{
string path = Server.MapPath(Request.ApplicationPath + "/test.xml");
using (FileStream fs = new FileStream(path, FileMode.Open))
{
XmlSerializer ser = new XmlSerializer(typeof(List<Person>));
List<Person> persons = (List<Person>)ser.Deserialize(fs);
fs.Close();
//List<Person> persons1 = ((List<Person>)os.Length + 1);
}
}
protected void Button1_Click(object sender, EventArgs e)
{
string path = Server.MapPath(Request.ApplicationPath + "/test.xml");
if (File.Exists(path))
{
deserialize();
}
else
{
List<Person> o = new List<Person>(TextBox1.Text, TextBox2.Text, int.Parse(TextBox3.Text));
using (FileStream fs = new FileStream(path, FileMode.Create))
{
XmlSerializer ser = new XmlSerializer(typeof(List<Person>));
ser.Serialize(fs, o);
}
}
}
}
感謝您的幫助:)
爲什麼不連載新的對象,然後操作XML插入新對象的XML中的附加元素? – Richard 2011-05-08 09:17:51
我沒有發明這個解決方案,但如果你的解決方案是簡單的方法來做到這一點比我可以這樣做你的方式:)我認爲 – harry180 2011-05-08 09:28:10
請注意,雖然我已經能夠回答這個問題,今後請給予更多的細節比「不起作用」。閱讀http://tinyurl.com/so-hints提示如何寫好問題。 – 2011-05-08 09:36:18