本文介绍了的getElementsByTagName的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何使用getElementsByTagName获取标记名称的值。我的Xml文件是
How to get the value of the tag name using getElementsByTagName. My Xml file is
<parent>
<method>name</method>
....
....
</parent>
这里我想单独考虑方法的价值。
我使用了以下代码,但我得到的是对象
Here i want to take the value of method alone.i used the following piece of code, but i am getting as object
File fXmlFile = new File(FILE_XML);
DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
Document doc = dBuilder.parse(fXmlFile);
doc.getElementsByTagName("method").toString();
推荐答案
doc.getElementsByTagName(方法)
返回。
你想要第一个,所以你应该使用 doc.getElementsByTagName(method)。item(0)
- 返回。
You want the first one of these, so you should use doc.getElementsByTagName("method").item(0)
- which returns a Node
.
从这里,你可能想要这个值; doc.getElementsByTagName(method)。item(0).getTextContent()
应该可以帮到你。
From this, you probably want the value; doc.getElementsByTagName("method").item(0).getTextContent()
should get you that.
这篇关于的getElementsByTagName的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!