在下面的xml文件中,我有文件名及其在hashmap中的相应规则编号(源代码中名为'ds'),格式为{{file1.c,{1234,3456,5087,9900,....}} ,{file2.c,{1234,3456,5087,9900,....}}&gt;,如果对于file1.c,<QACRule>
标签的xml文件中存在给定列表中的任何规则编号(此处为5087是匹配)我想删除它的父节点,即<Complain>
节点。
<SourceFiles>
**<File name="file1.c">**
<FileSummary>
<QAC>
<StatDev>0</StatDev>
<StatIntendDev>1</StatIntendDev>
</QAC>
<Developer>
<StatDev>0</StatDev>
<StatIntendDev>0</StatIntendDev>
<StatBlank>1</StatBlank>
</Developer>
<Total>
<TotalRank>intended deviation</TotalRank>
<StatDev>0</StatDev>
<StatIntendDev>1</StatIntendDev>
</Total>
</FileSummary>
**<Complain lfd="1">**
<Line>43</Line>
<Description>"#include statements"</Description>
<Rule>
**<QACRule>5087</QACRule>**
<CodingStd>18.1.</CodingStd>
<Deviation>true</Deviation>
</Rule>
<Ranking>
<QACRank>intended deviation</QACRank>
<DeveloperRank></DeveloperRank>
<TotalRank>intended deviation</TotalRank>
</Ranking>
<Comment>these includes must stay here at this position</Comment>
</Complain>
**<Complain lfd="2">**
<Line>140</Line>
<Description>"#include statements"</Description>
<Rule>
**<QACRule>55555</QACRule>**
<CodingStd>18.1.</CodingStd>
<Deviation>true</Deviation>
</Rule>
<Ranking>
<QACRank>intended deviation</QACRank>
<DeveloperRank></DeveloperRank>
<TotalRank>intended deviation</TotalRank>
</Ranking>
<Comment>these includes must stay here at this position</Comment>
</Complain>
</File>
<File name="file2.c>
......
</File>
</SourceFiles>
但是我不理解在hashmap中检查<QACRule>
值之后如何进入并删除<Complain>
节点?
我尝试了以下java代码:
inFactory = XMLInputFactory.newInstance();
outFactory= XMLOutputFactory.newInstance();
eventReader = inFactory.createXMLEventReader(new FileReader(inputFilePath));
out=new FileOutputStream("C:\\Users\\uidg8154\\Desktop\\new.xml");
eventWriter= outFactory.createXMLEventWriter(out);
while(eventReader.hasNext()){
XMLEvent event=eventReader.nextEvent();
if(event.isStartElement() && event.asStartElement().getName().getLocalPart().equalsIgnoreCase("SourceFiles") ){
isSourceFileParent=true;
System.out.println("-------start of <SourceFies>---------");
srcFiles=new SourceFiles();
}
if(event.isEndElement() && event.asEndElement().getName().getLocalPart().equalsIgnoreCase("SourceFiles")){
isSourceFileParent=false;
System.out.println("-------end of <SourceFies>---------");
}
if(isSourceFileParent==true && event.isStartElement() && event.asStartElement().getName().getLocalPart().equalsIgnoreCase("File")){
fileNameValue=event.asStartElement().getAttributeByName(new QName("name")).getValue();
System.out.println(fileNameValue);
sourceFileNamesFromInputXml.add(fileNameValue);
}
if(isSourceFileParent==true && event.isStartElement() && event.asStartElement().getName().getLocalPart().equalsIgnoreCase("Complain")){
complainIdValue=event.asStartElement().getAttributeByName(new QName("lfd")).getValue();
System.out.println(complainIdValue);
}
if(isSourceFileParent==true && event.isStartElement() && event.asStartElement().getName().getLocalPart().equalsIgnoreCase("QACRule")){
event = eventReader.nextEvent();
isQacRuleParent=true;
isProceed=true;
qacRuleNoValue=event.asCharacters().getData();
}
if(ds.containsKey(fileNameValue) && isProceed==true){
qacRuleNos=ds.get(fileNameValue);
if(qacRuleNos.contains(qacRuleNoValue)){
isIgnoreComplainNode=true;
}
}
if (isSourceFileParent==true && event.isEndElement() && event.asEndElement().getName().getLocalPart().equals("Complain") && isIgnoreComplainNode==true) {
isIgnoreComplainNode=false;
}
if(isIgnoreComplainNode==false){
System.out.println(event);
eventWriter.add(event);
}
}//end of while
eventWriter.flush();
eventWriter.close();
使用此代码,我面临“javax.xml.stream.XMLStreamException:找不到要写的元素:java.lang.ArrayIndexOutOfBoundsException:-1”异常和编写好的输出文件。
答案 0 :(得分:0)
您正在进行stax解析和写入,您可能需要处理更多的上下文。当您检测到if (!String.IsNullOrWhiteSpace(HttpContext.Current.Request.QueryString["id"]))
时,已经太晚了,因为您已经在输出上写了与之对应的事件:
isIgnoreComplainNode=true
如果你想在输出中避免这些事件,你应该在列表<Complain lfd="1">
<Line>43</Line>
<Description>"#include statements"</Description>
<Rule>
<QACRule>
关闭<Complain>
之前收集事件,当你到达</Complain>
时关闭:check {{ 1}}:
清除列表并继续解析。
主要问题是“我怎样才能避免在输出中编写不需要的<Complain>
节点”“我该如何进入并删除isIgnoreComplainNode
节点”。如果你把事件发送到eventWriter,那么回来就太晚了。