关于C# 序列化和反序列化的问题
类XMLtest:usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Tex...
类XMLtest:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Serialization;
namespace XML
{
[Serializable]
[XmlType("SerializabelTest")]
public class XMLtest
{
[XmlElement("test1")]
public string test1 { get; set; }
[XmlElement("test2")]
public string test2 { get; set; }
[XmlElement("test3")]
public string test3 { get; set; }
[XmlElement("test4")]
public string test4 { get; set; }
[XmlArray("tests")]
[XmlArrayItem("test")]
public List<string> tests { get; set; }
}
}
方法:
XMLtest xTest = new XMLtest();
xTest.test1 = "asdfsdf";
xTest.test2 = "sdsdf";
xTest.test3 = "1212";
xTest.test4 = "46454654";
xTest.tests.Add("asdfsadf");//这句话报错,提示“未将对象引用设置到对象的实例。”
XmlSerializer xml = new XmlSerializer(typeof(XMLtest));
FileStream fs = new FileStream(@"c:\t.xml", FileMode.Create);
xml.Serialize(fs,xTest);
fs.Close();
求解,谢谢各位大神 展开
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Serialization;
namespace XML
{
[Serializable]
[XmlType("SerializabelTest")]
public class XMLtest
{
[XmlElement("test1")]
public string test1 { get; set; }
[XmlElement("test2")]
public string test2 { get; set; }
[XmlElement("test3")]
public string test3 { get; set; }
[XmlElement("test4")]
public string test4 { get; set; }
[XmlArray("tests")]
[XmlArrayItem("test")]
public List<string> tests { get; set; }
}
}
方法:
XMLtest xTest = new XMLtest();
xTest.test1 = "asdfsdf";
xTest.test2 = "sdsdf";
xTest.test3 = "1212";
xTest.test4 = "46454654";
xTest.tests.Add("asdfsadf");//这句话报错,提示“未将对象引用设置到对象的实例。”
XmlSerializer xml = new XmlSerializer(typeof(XMLtest));
FileStream fs = new FileStream(@"c:\t.xml", FileMode.Create);
xml.Serialize(fs,xTest);
fs.Close();
求解,谢谢各位大神 展开
光点科技
2023-08-15 广告
2023-08-15 广告
通常情况下,我们会按照结构模型把系统产生的数据分为三种类型:结构化数据、半结构化数据和非结构化数据。结构化数据,即行数据,是存储在数据库里,可以用二维表结构来逻辑表达实现的数据。最常见的就是数字数据和文本数据,它们可以某种标准格式存在于文件...
点击进入详情页
本回答由光点科技提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询