标签: java xml
如何使用java中的属性值获取XML标记值?
XML的格式是:
<str name="Total Requests made to DataSource">0</str> <str name="Total Rows Fetched">0</str>
比如说:我需要使用0值来获取标记值Total Requests made to DataSource。
0
Total Requests made to DataSource
答案 0 :(得分:0)
使用XPath找到元素:
//str[@name='Total Requests made to DataSource']
找到元素后,只需提取文本内容即可。