3

我在反序列化没有命名空间的 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();
    }
}
4

1 回答 1

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")]
于 2012-08-09T16:50:08.467 回答