请教各位,有这么一个xml文件:
<?xml version="1.0" encoding="utf-8" ?>
<root>
<item Name="test1" Value="hahaha" />
<item Name="test2" Value="hehehe" />
</root>
我要查询name属性为"test2"的value属性的值,xpath应该怎么写?
已知/root/item/@Value[@Name='test2']貌似不对~
/root/item[@Name='test2']/@Value试试?