我正在尝试使用Windows的任务调度程序xml文件。对于任何不知道的人,xml文件如下所示:
<?xml version="1.0" encoding="UTF-16"?>
<Tasks>
<!-- \job1 -->
<Task version="1.2"
xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
<RegistrationInfo>
<Date>2013-08-03T13:07:36.8791439</Date>
<Author>pc\laptop</Author>
</RegistrationInfo>
...
<!-- \job2 -->
<Task version="1.2"
......
我需要为数组分配“job1”值。为此,我做了这个java代码:
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
dbf.setIgnoringComments(false);
NodeList jobList = el.getElementsByTagName("Tasks");
NodeList ndList = el.getElementsByTagName("Task");
for (int i = 0; i < ndList.getLength(); i++) {
Node childNode2 = jobList.item(i);
Node childNode = ndList.item(i);
if (childNode2.getNodeType() == Node.COMMENT_NODE) {
//Element jElement = (Element) childNode2;
//jElement.toString();
System.out.println(childNode2.getNodeType());
}
if (childNode.getNodeType() == Node.ELEMENT_NODE) {
Element eElement = (Element) childNode;
System.out.println("Date : " + getTagValue("Date", eElement));
//some other codes....
}
但我无法达到评论区域。 第二件事是我如何进入评论区域。例如,我如何编写for循环?
答案 0 :(得分:2)
您错过了评论,因为您使用的getElementsByTagName()
返回NodeList
每个Element
类型。
使用getChildNodes()
上的Document
代替Node
,返回Comment
的任何子界面的节点列表,包括{{1}}
答案 1 :(得分:0)
这应该有效
NodeList list1 = doc.getDocumentElement().getChildNodes();
for (int i = 0; i < list1.getLength(); i++) {
Node n1 = list1.item(i);
if (n1.getNodeType() == Node.COMMENT_NODE) {
String comment = n1.getNodeValue();
} else if (n1.getNodeType() == Node.ELEMENT_NODE) {
// Task
NodeList list2 = n1.getChildNodes();
for (int j = 0; j < list2.getLength(); j++) {
Node n2 = list2.item(j);
if (n2.getNodeType() == Node.ELEMENT_NODE) {
// RegistrationInfo
NodeList list3 = n2.getChildNodes();
for (int k = 0; k < list3.getLength(); k++) {
Node n3 = list3.item(k);
if (n3.getNodeType() == Node.ELEMENT_NODE) {
if (n2.getNodeName().equals("Date")) {
...