gpt4 book ai didi

java - 获取单个 xml 节点 - android dev

转载 作者:行者123 更新时间:2023-12-01 05:55:16 24 4
gpt4 key购买 nike

我想制作一个使用 xml 数据库中的数据的应用程序,有两点我需要帮助,因为我发现 Java 和 xml 太复杂了。

例如

<items>
<1><name>box</name><price>2.00</price></1>
<2><name>pencil</name><price>1.00</price></1>
</items>
  1. 从子节点获取单个 xml 值(例如第一项的名称 - “box”)
  2. 从子节点获取 xml 数据库(将其用作列表框的数据源) - 这不是必需的。

最佳答案

这里的问题是 XML 节点必须以字母开头命名 - 就像 Java 中的变量一样。尝试如下操作:

<items>
<item name="box" price="2.00" />
<item name="pencil" price="1.00" />
</items>

所以你看,每个 item表示为<item> 。在 XML 中,标签具有语义意义。你可以做类似的事情(取决于你的解析器 - 这实际上更接近 JavaScript,但我希望你能明白这个想法):

myXmlDocument = parseThatXMLForMePlease(); // Load the XMl from wherever
itemList = myXmlDocument.getChildren()[0]; // Get the first node in the document
firstItem = itemList.getChildren()[0]; // Get the first child of the item list
itemName = firstItem.getAttr("name");
itemPrice = firstItem.getAttr("price");

如果您想使用数据作为某些列表框的基础,您可能需要使用 Adapter 。这基本上是一个数据结构,设计用于向某些 UI 小部件提供数据(链接指向 ListAdapter - 这听起来正是您想要的)。

关于java - 获取单个 xml 节点 - android dev,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3227509/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com