gpt4 book ai didi

JAVA,NodeList XML在不知道XML内容的情况下获取所有子节点

转载 作者:行者123 更新时间:2023-12-02 13:33:04 26 4
gpt4 key购买 nike

我正在使用 Vaadin,一个 Java 框架。

我处理 XML 内容,我想用这些信息制作一棵树,但我不知道 XML 内容会持续多久。我发送一个调用来获取 XML,但使用不同的 IP 地址。

我知道如何得到这个 child ,以及如何再次得到下一个 child 。但我想自动化这个功能,比如检查 XML 有多长并循环直到结束。

这是我现在的代码:

private void getData(NodeSet data)
{
InputStream dataXml = new ByteArrayInputStream(data.toXMLString().getBytes(StandardCharsets.UTF_8));
final DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
try
{
final DocumentBuilder builder = factory.newDocumentBuilder();
final Document document = builder.parse(dataXml);
final Element racine = document.getDocumentElement();
final NodeList racineNoeuds = racine.getChildNodes();
final int nbRacineNoeuds = racineNoeuds.getLength();

for (int i = 0; i < nbRacineNoeuds; i++)
{
//System.out.print(nbRacineNoeuds);
//System.out.print(racineNoeuds);
if (racineNoeuds.item(i).getNodeType() == Node.ELEMENT_NODE)
{
final Element child = (Element) racineNoeuds.item(i);
final NodeList racineChild = child.getChildNodes();
final int nbRacineChild = racineChild.getLength();

for (int y = 0; y < nbRacineChild; y++)
{
if (racineChild.item(y).getNodeType() == Node.ELEMENT_NODE)
{
final Element child2 = (Element) racineChild.item(y);
final NodeList children = child2.getChildNodes();
final int nbChildren = children.getLength();

for (int a = 0; a < nbChildren; a++)
{
if (children.item(a).getNodeType() == Node.ELEMENT_NODE)
{

final Element child3 = (Element) children.item(y);

}
}
}
}
//System.out.print(child);

//tree.setParent(racineChild, child);
}
/*tree.addItem(racine);
tree.addItem(racineNoeuds);
tree.setParent(racineNoeuds, racine);
tree.addItem(child);
tree.setParent(child, racine);
tree.addItem(child2);
tree.setParent(child2, child);
tree.addItem(child3);
tree.setParent(child3, child2);*/
}
} catch (final ParserConfigurationException e)
{
e.printStackTrace();
} catch (final SAXException e)
{
e.printStackTrace();
} catch (final IOException e)
{
e.printStackTrace();
}

}

谢谢!

最佳答案

由于我的回答来得相当晚,我想这主要是为了后代:)

事实上,正如 @Morfic 所指出的,递归方法可能是您现在可以实现的最简单的方法来完成工作。

我创建了一个 tiny project来说明一个非常基本的解决方案。它包含 DataSource类提供一些测试数据和 main Vaadin UI其内容是一个,由您需要的递归方法填充。

/**
* If <code>parentId</code> is <code>null</code> then the <code>element</code>'s
* name or value gets added directly under <code>tree</code>.
*/
private void loadTree(Tree tree, Object parentId, Node element) {
if (tree == null || element == null) {
return;
}

// 1. We add to the tree what's given to us as argument:

final String itemId =
(element.getNodeType() == Node.TEXT_NODE ? element.getNodeValue() : element.getNodeName()).trim();
if (itemId.length() == 0) {
return; // skip eventual white spaces...
}
tree.addItem(itemId); // a tree item's label defaults to its ID

// 2. If a parent ID is also provided as argument, we set that as parent for the newly added item

if (parentId != null) {
tree.setParent(itemId, parentId);
}

// 3. We then _recursively_ add to the tree every child of the given element (if any):

NodeList children = element.getChildNodes();
for (int i = 0, n = children.getLength(); i < n; i++) {
loadTree(tree, itemId, children.item(i));
}

// 4. Optionally we can expand an item if it has any children or force hiding the arrow if not:

if (children.getLength() > 0) {
tree.expandItem(itemId);
} else {
tree.setChildrenAllowed(itemId, false);
}
}

该方法首先向提供的Tree添加一个项目,其标签/ID是根据Node的内容或名称创建的。如果还给出了父 ID,我们将其设置为新添加节点的父 ID。然后,如果给定的 Node 有任何子节点,我们会递归地调用每个子节点的方法,并提供新创建的项目的 ID 作为父节点。

这应该可以解决问题。话虽如此,有些事情您应该(重新)考虑:

  1. 虽然简单,但如果 XML(非常)大,递归实现可能会给您带来麻烦;然后,您可能会选择同一方法的迭代实现(一旦提供了递归方法,通常不太难获得)

  2. 显然,在第一次调用时,parentId 参数可以/应该保留 null。由于这往往会使代码更难理解(通常,null 参数不是很清楚),因此您可以使用 private void loadTree(Tree tree, Node element) { loadTree 重载该方法(树,空,元素); } 其中你隐藏了丑陋的论点;只是对来电者更友好一点...

  3. 我显然已经直接在 UI 中使用了 XML DOM 模型/API——通常不是最好的主意(即,将应用程序的 UI 与低级模型结合起来);在更复杂的应用程序中,我们确实有更好的模型(领域模型、UI 模型等);同样,人们可能想使用 HierarchicalContainer

  4. Tree 组件在 Vaadin 8 中还没有等效的组件;因此,该项目仅适用于 Vaadin 版本(不包括)8

好勇气;)

关于JAVA,NodeList XML在不知道XML内容的情况下获取所有子节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43115562/

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