我试图在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 "/>"
文件中有什么问题?我找不到错误的地方
发布于 2015-09-08 00:08:04
第12行当前为:
... isLeaf = 'false'isAbstract ...只需添加额外的空间即可使其正常工作:
... isLeaf = 'false' isAbstract ...https://stackoverflow.com/questions/32442362
复制相似问题