我试图使用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”
这是什么语法?
答案 0 :(得分:0)
您是否只想选择1个area
元素?
如果是这样,带有值“VIC_PT025”的属性为“aac”的area
元素在文档中看起来是唯一的,所以你应该对//product/forecast/area[@aac="VIC_PT025"]
如果要测试所有属性,可以使用//product/forecast/area[@aac="VIC_PT025" and @description="Geelong" and @type="location" and @parent-aac="VIC_PW007"]
答案 1 :(得分:0)
语法
// product / forecast / area [@ aac =“VIC_PT025”和@ description =“Geelong”和@ type =“location”和@ parent-aac =“VIC_PW007”]