0

我试图使用 gdata 来读取这个 xml 文件: ftp: //ftp2.bom.gov.au/anon/gen/fwo/IDV10753.xml

路径是 //product/forecast/area aac="VIC_PT025" description="Geelong" type="location" parent-aac="VIC_PW007"

什么是正确的语法?

4

2 回答 2

0

您是否尝试仅选择 1 个area元素?

如果是这样,area属性为“aac”且值为“VIC_PT025”的元素在文档中看起来是唯一的,因此您应该擅长//product/forecast/area[@aac="VIC_PT025"]

如果你想测试你可以使用的所有属性//product/forecast/area[@aac="VIC_PT025" and @description="Geelong" and @type="location" and @parent-aac="VIC_PW007"]

于 2013-10-30T16:21:36.863 回答
0

句法

//product/forecast/area[@aac="VIC_PT025" and @description="Geelong" and @type="location" and @parent-aac="VIC_PW007"]

于 2013-10-31T08:14:28.187 回答