c# – 如何将数据从Windows窗体保存到XML文件?

c# – 如何将数据从Windows窗体保存到XML文件?,第1张

概述我非常肯定我必须首先创建一些 XML文件的模型,对吧? 任何帮助将不胜感激. 一种简单的方法是创建将数据放入的.NET类,然后使用 XmlSerializer将数据序列化为文件,然后反序列化为类的实例并重新填充表单. 例如,如果您有一个包含客户数据的表单.为了简短起见,我们将只有名字和姓氏.您可以创建一个类来保存数据.请记住,这只是一个简单的示例,您可以像这样存储数组和各种复杂/嵌套数据. pub 我非常肯定我必须首先创建一些 XML文件的模型,对吧?

任何帮助将不胜感激.

解决方法 一种简单的方法是创建将数据放入的.NET类,然后使用 XmlSerializer将数据序列化为文件,然后反序列化为类的实例并重新填充表单.

例如,如果您有一个包含客户数据的表单.为了简短起见,我们将只有名字和姓氏.您可以创建一个类来保存数据.请记住,这只是一个简单的示例,您可以像这样存储数组和各种复杂/嵌套数据.

public class CustomerData{  public string Firstname;  public string Lastname;}

因此,将数据保存为XML,您的代码将如下所示.

// Create an instance of the CustomerData class and populate// it with the data from the form.CustomerData customer = new CustomerData();customer.Firstname = txtFirstname.Text;customer.Lastname = txtLastname.Text;// Create and XmlSerializer to serialize the data to a fileXmlSerializer xs = new XmlSerializer(typeof(CustomerData));using (fileStream fs = new fileStream("Data.xml",fileMode.Create)){  xs.Serialize(fs,customer);}

然后加载数据将类似于以下内容

CustomerData customer;XmlSerializer xs = new XmlSerializer(typeof(CustomerData));using (fileStream fs = new fileStream("Data.xml",fileMode.Open)){  // This will read the XML from the file and create the new instance  // of CustomerData  customer = xs.Deserialize(fs) as CustomerData;}// If the customer data was successfully deserialized we can transfer// the data from the instance to the form.if (customer != null){  txtFirstname.Text = customer.Firstname;  txtLastname.Text = customer.Lastname;}
总结

以上是内存溢出为你收集整理的c# – 如何将数据从Windows窗体保存到XML文件?全部内容,希望文章能够帮你解决c# – 如何将数据从Windows窗体保存到XML文件?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1222991.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存