提取xml中所有节点的text数据

前端之家收集整理的这篇文章主要介绍了提取xml中所有节点的text数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Element e = doc.getRootElement();
Stack<Element> stack = new Stack<Element>();

			stack.push(e);
			while (!stack.isEmpty()) {
				Element node = stack.pop();
				if (!node.isTextOnly() && node.hasContent()) {
					List<Element> l = node.elements();
					for(Element ele : l){
						stack.push(ele);//所有非文本的节点一下子“装”
					}
					
				}
				else{
					System.out.println(node.getTextTrim());
				}
			}
原文链接:https://www.f2er.com/xml/294855.html

猜你在找的XML相关文章