没有命名空间的XML反序列化

时间:2012-08-08 22:33:34

标签: c# xml visual-studio deserialization xml-deserialization

我在反序列化没有命名空间的XML时遇到了一些麻烦。奇怪的是,我得到一个例外,说“XML文档中存在错误(2,2)。”;内部异常“command_strings xmlns =不是预期的。”我在VS2008编码。

我的XML

<?xml version="1.0" encoding="utf-8"?>
<command_strings version="1">
    <commands>
         <command cmd_id="1" state_id="1" label="On" cmd_type="F" cmd_string="1" />
    </commands>
</command_strings>

我的班级

public class Command
{
    [System.Xml.Serialization.XmlAttribute("cmd_id")]
    public int cmd_id { get; set; }

    [System.Xml.Serialization.XmlAttribute("state_id")]
    public int state_id { get; set; }

    [System.Xml.Serialization.XmlAttribute("label")]
    public string label { get; set; }

    [System.Xml.Serialization.XmlAttribute("cmd_type")]
    public string cmd_type { get; set; }

    [System.Xml.Serialization.XmlAttribute("cmd_string")]
    public string cmd_string { get; set; }
}

[System.Xml.Serialization.XmlRoot("commands_strings")]
public class CommandCollection
{
    [System.Xml.Serialization.XmlAttribute("version")]
    public int version { get; set; }

    [XmlArray("commands")]
    [XmlArrayItem("command", typeof(Command))]
    public Command[] Command { get; set; }
}

public bool IsValidXML()
{
    CommandCollection commandscollection = null;
    XmlSerializer dserial = new XmlSerializer(typeof(CommandCollection));

    using (StreamReader streamReader = new StreamReader(@"C:\123.xml"))
    {
        commandscollection = (CommandCollection)dserial.Deserialize(streamReader);
        streamReader.Close();
    }
}

1 个答案:

答案 0 :(得分:2)

尝试使用此方法进行反序列化。

Stream Read = null;
object m_Configuration = null;
try
{
     FileInfo FI = new FileInfo("C:\\");

     Read = FI.OpenRead();
     XmlSerializer serializer = new XmlSerializer(typeof(CommandCollection));

     m_Configuration = serializer.Deserialize(Read);

}
finally
{
     if (Read != null)
     {
           Read.Close();
     }
}

您也可以尝试将Root属性放在CommandCollection之上,使用

[XmlType("commands_strings")]