我正在尝试用SAX解析该文档:
<scxml version="1.0" initialstate="start" name="calc">
<datamodel>
<data id="expr" expr="0" />
<data id="res" expr="0" />
</datamodel>
<state id="start">
<transition event="OPER" target="opEntered" />
<transition event="DIGIT" target="operand" />
</state>
<state id="operand">
<transition event="OPER" target="opEntered" />
<transition event="DIGIT" />
</state>
</scxml>
我很好地阅读了所有属性,除了“initialstate”和“name”...... 我使用startElement处理程序获取属性,但scxml的属性列表的大小为零。为什么?我怎么能克服这个问题?
修改:
public void startElement(String uri, String localName, String qName, Attributes attributes){
System.out.println(attributes.getValue("initialstate"));
System.out.println(attributes.getValue("name"));
}
当解析第一个标签时,它不起作用(两次打印“null”)。事实上,
attributes.getLength();
评估为零。
由于
答案 0 :(得分:3)
我有一个完整的例子来自there,并根据你的文件进行了调整:
public class SaxParserMain {
/**
* @param args
* @throws SAXException
* @throws ParserConfigurationException
* @throws IOException
*/
public static void main(String[] args) throws ParserConfigurationException, SAXException,
IOException {
SAXParser parser = SAXParserFactory.newInstance().newSAXParser();
CustomHandler handler = new CustomHandler();
parser.parse(new File("file/scxml.xml"), handler);
}
}
和
public class CustomHandler extends DefaultHandler {
@Override
public void startElement(String uri, String localName, String qName, Attributes attributes)
throws SAXException {
System.out.println();
System.out.print("<" + qName + "");
if (attributes.getLength() == 0) {
System.out.print(">");
} else {
System.out.print(" ");
for (int index = 0; index < attributes.getLength(); index++) {
System.out.print(attributes.getLocalName(index) + " => "
+ attributes.getValue(index));
}
System.out.print(">");
}
}
@Override
public void endElement(String uri, String localName, String qName) throws SAXException {
System.out.print("\n</" + qName + ">");
}
}
输出结果为:
<scxml version => 1.0initialstate => startname => calc>
<datamodel>
<data id => exprexpr => 0>
</data>
<data id => resexpr => 0>
</data>
</datamodel>
<state id => start>
<transition event => OPERtarget => opEntered>
</transition>
<transition event => DIGITtarget => operand>
</transition>
</state>
<state id => operand>
<transition event => OPERtarget => opEntered>
</transition>
<transition event => DIGIT>
</transition>
</state>
</scxml>
答案 1 :(得分:1)
Attributes.getValue()
并不像看起来那么简单。 javadoc说:
按XML查找属性的值 合格(加前缀)名称。
因此,如果存在任何命名空间并发症,那么传入“initialstate”可能不起作用,因为“initialstate”在技术上不是限定名称。
我建议您在Attributes
课程中使用其他方法进行游戏,例如getValue(int)
,您可能会有更多成功。
编辑:另一种可能性是startElement
的这种调用并不是指您认为的元素。您是否确认localName
参数确实是scxml
,而不是其他内容?