如何从 xml 文档中获取信息?我在 c:\temp\data.xml 有一个 xml 文档,并且正在使用 Visual Studio。
我能想到的最接近的是:
XmlDocument xdoc = new XmlDocument();
xdoc.Load(@"C:\temp\data.xml");
date = xdoc.SelectSingleNode("/forcast_informat…
XML 文档如下所示:
<?xml version="1.0"?>
-<xml_api_reply version="1">
-<weather section="0" row="0" mobile_zipped="1" mobile_row="0" tab_id="0" module_id="0">
-<forecast_information>
etc etc...
<current_date_time data="2012-08-09 21:53:00 +0000"/>
etc, etc...
我想做的就是抓住那个日期 2012-08-09 21:53:00 +0000 ...有什么建议吗?