所以我有一个XML文件,它从imdb获取信息,就像那样,
<?xml version="1.0" encoding="UTF-8"?>
<root response="True">
<movie title="Game of Thrones" year="2011–" rated="TV-MA" released="17 Apr 2011" runtime="56 min" genre="Adventure, Drama, Fantasy" director="N/A" writer="David Benioff, D.B. Weiss" actors="Peter Dinklage, Lena Headey, Emilia Clarke, Kit Harington" plot="Several noble families fight for control of the mythical land of Westeros." language="English" country="USA" awards="Won 1 Golden Globe. Another 133 wins & 248 nominations." poster="http://ia.media-imdb.com/images/M/MV5BNTgxOTI4NzY2M15BMl5BanBnXkFtZTgwMjY3MTM2NDE@._V1_SX300.jpg" metascore="N/A" imdbRating="9.5" imdbVotes="868,876" imdbID="tt0944947" type="series"/>
</root>
我想得到一个特定的属性imdbRating
我已经从这个网站看了很多解析问题,而我仍然无法找到我想出的最佳解决方案,1 p>
XDocument doc = XDocument.Parse("game of thrones.xml");
string var = doc.Descendants("movie title").Attributes("imdbRating").FirstOrDefault().Value;
labelImdb.Content = var;
但它确实在这行中给出了错误
XDocument doc = XDocument.Parse("game of thrones.xml");
我也试过了,并且没有工作
var xml = new XmlDocument();
xml.LoadXml("game of thrones.xml");
string dummy = xml.DocumentElement.SelectSingleNode("imdbRating").InnerText;
Console.WriteLine(dummy);
Console.ReadLine();
第二个在这一行中出错,
xml.LoadXml("game of thrones.xml");
错误是
未处理的类型&#39; System.Xml.XmlException&#39;发生在System.Xml.dll
中其他信息:根级别的数据无效。第1行,第1位。
答案 0 :(得分:2)
您错误地选择了movie
节点。
var xmlString = File.ReadAllText(@"C:\YourDirectory\YourFile.xml"); //or from service
var xDoc = XDocument.Parse(xmlString);
var rating = xDoc.Descendants("movie").First().Attribute("imdbRating").Value;
您需要选择的节点是 movie
,而不是 movie title!
但是,它不应该在XDocument.Parse
处抛出错误。再次检查您的XML
,我尝试了您的示例XML
,它运行得很好。确保文件开头没有空格。
答案 1 :(得分:0)
XDocument.Parse
和XmlDocument.LoadXml
都希望它们的参数是包含xml的字符串,而不是包含文件名的字符串。您想使用XmlDocument.Load
,它接受文件名:
XmlDocument xml = new XmlDocument();
xml.Load("game of thrones.xml");