gpt4 book ai didi

c# - 解析 XML 数据时出错

转载 作者:太空宇宙 更新时间:2023-11-03 11:33:56 25 4
gpt4 key购买 nike

我试图获取谷歌天气数据如下:

try
{
string cityName = txtCityName.Text;
//Format the google URL with CityName
string weatherURL = string.Format("http://www.google.com/ig/api?weather={0}", cityName);

//Parse the XML URL and get the Data
var weatherXML = XDocument.Parse(weatherURL);
var weatherResult = from weatherDetail in weatherXML.Descendants("current_conditions")
select new currentWeatherCondition
{
condition = ((string)weatherDetail.Element("condition").Attribute("data")).Trim(),
temp = ((string)weatherDetail.Element("temp_c").Attribute("data")).Trim(),
imageURL = ((string)weatherDetail.Element("icon").Attribute("data")).Trim(),

};


}
catch (Exception err)
{
Response.Write(err.Message.ToString());
}

我收到异常 *根级别的数据无效。第 1 行,位置 1。 * 因为我传递的不是 XML 数据,而是 URL。如何将 XML 数据传递给解析器

最佳答案

Parse 期待一个充满 XML 的字符串

要么使用 XDocument.load(我认为它需要一个 url),要么使用 webrequest 获取 xml 字符串并将其传递给

关于c# - 解析 XML 数据时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6876158/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com