我有以下 java 代码,我在其中尝试将 ArrayList 复制到另一个 ArrayList。
ArrayList<String> nodes = new ArrayList<String>();
ArrayList NodeList = new ArrayList();
ArrayList list = new ArrayList();
for (int i = 0; i < PropertyNode.getLength() - 1; i++) {
Node childNode = PropertyNode.item(i);
NodeList Children = childNode.getChildNodes();
if (Children != null) {
nodes.clear();
nodes.add("PropertyStart");
nodes.add(Children.item(3).getTextContent());
nodes.add(Children.item(7).getTextContent());
nodes.add(Children.item(9).getTextContent());
nodes.add(Children.item(11).getTextContent());
nodes.add(Children.item(13).getTextContent());
nodes.add("PropertyEnd");
}
NodeList.addAll(nodes);
list.add(NodeList);
}
我希望“列表”数组采用这种格式:
[[PropertyStart,a,b,c,PropertyEnd],[PropertyStart,d,e,f,PropertyEnd],[PropertyStart,......]]
但是从上面的代码中,“list”数组输出是这样的:
[PropertyStart,a,b,c,PropertyEnd,PropertyStart,d,e,f,PropertyEnd,PropertyStart,....PropertyEnd]
我想你可能已经注意到了不同之处。我无法达到预期格式的结果。