0

Visual Studio 2010(c#) を使用していますが、XML 逆シリアル化コードに問題があります。XML を正しく読み取ることができません。

私のXMLは次のようになります。

<?xml version="1.0" encoding="utf-8"?>
<command_strings version="1">
  <commands>
    <command cmd_id="1" state_id="1" label="On" cmd_type="fixed" cmd_string="1%0D" />
    <command cmd_id="1" state_id="3" label="Off" cmd_type="fixed" cmd_string="0%0d" />
  </commands>
</command_strings>

私のコードは次のようになります:

[Serializable()]
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; }
}

[Serializable()]
[System.Xml.Serialization.XmlRoot("commands")]
public class CommandCollection
{
    [XmlArray("commands")]
    [XmlArrayItem("command", typeof(Command))]
    public Command[] Command { get; set; }
}

public void XMLStrings(string myXML)
{
    CommandCollection commandscollection = null;
    XmlSerializer dserial = new XmlSerializer(typeof(CommandCollection));

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

私が見逃している可能性のあるものはありますか?どんな助けでも大歓迎です!

4

1 に答える 1

2

CommandCollectionクラスは、属性でマークする必要があります[System.Xml.Serialization.XmlRoot("command_strings")]。また、プロパティを追加versionして、属性でマークする必要がありXmlAttributeます。

于 2012-08-06T04:31:36.410 に答える