0

この XML ドキュメントを解析しようとしています:
http://services.tvrage.com/feeds/episode_list.php?sid=3332

私はこのクラスを持っています:

public class Episode {
  public int Season { get; set; }
  public string Title { get; set; }
}

私のコード:

string path = "http://services.tvrage.com/feeds/episode_list.php?sid=" + id;

XmlDocument doc = new XmlDocument();
doc.Load(path);

今、私は立ち往生しています。このファイルからエピソードのリストを作成するにはどうすればよいですか? 季節に使われる属性で迷っています。

ありがとう

4

4 に答える 4

2

Linq To Xml を試してみてはどうですか?

var xDoc = XDocument.Load("http://services.tvrage.com/feeds/episode_list.php?sid=3332");

var name = xDoc.Root.Element("name").Value;
var episodes = xDoc.Descendants("episode")
                    .Select(e => new
                    {
                        epnum = (string)e.Element("epnum"),
                        //seasonnum = (string)e.Element("seasonnum"),
                        seasonnum = (string)e.Parent.Attribute("no"),
                        prodnum = (string)e.Element("prodnum"),
                        airdate = (string)e.Element("airdate"),
                        link = (string)e.Element("link"),
                        title = (string)e.Element("title"),
                    })
                    .ToList();
于 2013-04-30T12:46:38.860 に答える
1

これを試して:

var episodes = doc.SelectNodes(@"/Show/Episodelist/Season/episode");
List<Episode> episodesList = new List<Episode>();
foreach (XmlNode episode in episodes)
{
    episodesList.Add(new Episode()
    {
        Season = Int32.Parse(episode.ParentNode.Attributes["no"].Value.ToString()),
        Title = episode.SelectNodes("title")[0].InnerText
    });
}
于 2013-04-30T12:45:45.500 に答える
0
string path = @"http://services.tvrage.com/feeds/episode_list.php?sid="+id;
IEnumerable<Episode> Episodes =XDocument.Load(path)
        .Descendants("episode")
        .Select(x => new Episode
        {

            Season = Convert.ToInt16(x.Element("seasonnum").Value),
            Title = x.Element("title").Value
        });
于 2013-04-30T13:03:50.520 に答える