我有以下xml:
<?xml version="1.0" encoding="ISO-8859-1"?>
<RootNode>
<Node_11>LEVEL_1-Value_1</Node_11>
<Node_12>LEVEL_1-Value_2</Node_12>
<Node_13>
<Node_121>LEVEL_2-Value_1</Node_121>
</Node_13>
<Node_14>
<Node_121>
<Node_1231>
<Node_12341>LEVEL_4-Value_1</Node_12341>
<Node_12342>LEVEL_4-Value_2</Node_12342>
<Node_12343>LEVEL_4-Value_3</Node_12343>
</Node_1231>
</Node_121>
</Node_14>
<Node_15>
<Node_25>
<Node_251>Value_251</Node_251>
<Node_252>Value_252</Node_252>
</Node_25>
<Node_25>
<Node_251>Value_253</Node_251>
<Node_252>Value_254</Node_252>
</Node_25>
<Node_25>
<Node_251>Value_255</Node_251>
<Node_252>Value_256</Node_252>
</Node_25>
<Node_25>
<Node_251>Value_257</Node_251>
<Node_252>Value_258</Node_252>
</Node_25>
</Node_15>
</RootNode>
我必须使用java打印带有值的节点路径。以下是我必须得到的输出样本:
RootNode.Node_11 = LEVEL_1-Value_1
RootNode.Node_12 = LEVEL_1-Value_2
RootNode.Node_13.Node_121 = LEVEL_2-Value_1
RootNode.Node_14.Node_121.Node_1231.Node_12341 = LEVEL_4-Value_1
RootNode.Node_14.Node_121.Node_1231.Node_12342 = LEVEL_4-Value_2
RootNode.Node_14.Node_121.Node_1231.Node_12343 = LEVEL_4-Value_3
RootNode.Node_15.Node_25.Node_251 = Value_251
RootNode.Node_15.Node_25.Node_252 = Value_252
RootNode.Node_15.Node_25.Node_251 = Value_253
RootNode.Node_15.Node_25.Node_252 = Value_254
RootNode.Node_15.Node_25.Node_251 = Value_255
RootNode.Node_15.Node_25.Node_252 = Value_256
RootNode.Node_15.Node_25.Node_251 = Value_257
RootNode.Node_15.Node_25.Node_252 = Value_258
这是我最后的java代码。我无法正常工作。
public class Read_XML {
static String rootTag = "";
static HashMap valueMap = new HashMap();
public static void main(String arg[]) throws IOException, AxiomRuntimeException
{
File inFile = new File("C:/Test.xml");
FileReader fr = new FileReader(inFile);
BufferedReader br = new BufferedReader(fr);
String sXML = "";
for (String line; (line = br.readLine())!= null;)
{
sXML += line;
}
Document doc = XMLStringParser.parseString(sXML);
Element root = doc.getDocumentElement();
rootTag += root.getTagName();
NodeList rootList = doc.getElementsByTagName("RootNode");
Element rootList_node = (Element) rootList.item(0);
NodeList kids = rootList_node.getChildNodes();
for(int i = 0; i < kids.getLength(); i++)
{
String nextTag = "";
if(kids.item(i) instanceof Element)
{
nextTag = rootTag + "." + kids.item(i).getNodeName();
int level = 0;
processChildNode(kids.item(i).getChildNodes(), nextTag, level);
}
}
Iterator it = valueMap.keySet().iterator();
for (;it.hasNext();)
{
String key = it.next().toString();
String val = valueMap.get(key).toString();
System.out.println(key + " = " + val );
}
}
public static void processChildNode(NodeList listOfNodes, String tags, int level)
{
String tagPath = tags;
int curLevel = 0;
for(int i = 0; i < listOfNodes.getLength(); i++)
{
System.out.println("Node Name = " + listOfNodes.item(i).getNodeName());
if(listOfNodes.item(i) instanceof Element)
{
if(curLevel == level + 1)
{
tagPath = tags;
}
else
{
curLevel = level +1;
tagPath += "." + listOfNodes.item(i).getNodeName();
}
if(listOfNodes.item(i).getChildNodes().getLength() >= 1)
{
processChildNode(listOfNodes.item(i).getChildNodes(), tagPath, curLevel);
}
}
else if(listOfNodes.item(i) instanceof Text && listOfNodes.getLength() == 1)
{
String value = listOfNodes.item(i).getNodeValue();
valueMap.put(tagPath, value);
}
}
}
}
这是当前的输出:
RootNode.Node_15.Node_25.Node_251 = Value_251
RootNode.Node_14.Node_121.Node_1231.Node_12341 = LEVEL_4-Value_1
RootNode.Node_12 = LEVEL_1-Value_2
RootNode.Node_15 = Value_258
RootNode.Node_14.Node_121.Node_1231 = LEVEL_4-Value_3
RootNode.Node_15.Node_25 = Value_252
RootNode.Node_11 = LEVEL_1-Value_1
RootNode.Node_15.Node_251 = Value_257
RootNode.Node_13.Node_121 = LEVEL_2-Value_1
请帮助我让它发挥作用。 谢谢。
答案 0 :(得分:2)
您遇到此问题是因为您使用HashMap
来存储您的值。例如,路径RootNode.Node_15.Node_25.Node_252
多次出现,当您在Map中添加新值时,旧值将被删除。
您可以将HashMap
替换为List
,以便查看找到的所有路径。见这个例子:
static List<String []> valueList = new ArrayList<String []>();
并以这种方式添加值:
valueList.add(new String [] {tagPath, value});
最后,您可以按如下方式显示路径:
Iterator<String []> it = valueList.iterator();
for (;it.hasNext();) {
String [] val = it.next();
System.out.println(val[0] + " = " + val[1] );
}
<强> EDITED 强>
路径构造也存在错误,变量level
和curLevel
不是必需的。
这是一个有效的代码示例:
public static void processChildNode(NodeList listOfNodes, String tags) {
for (int i = 0; i < listOfNodes.getLength(); i++) {
if (listOfNodes.item(i) instanceof Element) {
String tagPath = tags + "." + listOfNodes.item(i).getNodeName();
if (listOfNodes.item(i).getChildNodes().getLength() >= 1) {
processChildNode(listOfNodes.item(i).getChildNodes(),
tagPath);
}
} else if (listOfNodes.item(i) instanceof Text
&& listOfNodes.getLength() == 1) {
String value = listOfNodes.item(i).getNodeValue();
valueList.add(new String[] { tags, value });
}
}
}