XMI文件中的错误

时间:2015-09-07 15:54:38

标签: java parsing xml-parsing xmi argouml

我正在尝试解析java中的这个XMI文件http://pastebin.com/Ltp09cPD,这个文件是用ArgoUML生成的,但是我收到了这个错误:

"Caused by: org.xml.sax.SAXParseException; systemId: file:/C:/Users/SredXNY/Google%20Drive/Tesis/Ejemplos%20de%20XMI/argo.xmi; lineNumber: 12; columnNumber: 167; El tipo de elemento "UML:UseCase" debe ir seguido de una de estas especificaciones de atributo: ">" o "/>"."

英文版就像"the type of element "UML:UseCase" must be followed for one of this attribute especifications: ">" or "/>"

文件中有什么问题?我找不到错误

1 个答案:

答案 0 :(得分:1)

第12行目前显示:

... isLeaf = 'false'isAbstract ...

只需添加一个额外的空间即可:

... isLeaf = 'false' isAbstract ...