需要通过java代码读取XMI文件,而不使用任何工具(如argouml)
有什么方法可以通过编写java代码而不是使用其他工具(如EMF、MDI等)来读取XMI文件?我想编写一个java程序,它可以读取xmi文件中的所有类和属性,然后加载到内存中。
请帮忙。
Is there any way i can read an XMI file by writing java code rather that using nay tool(like EMF, MDI etc)? I want to write a java program which can read all the classes and attributes in an xmi file and then load then in the memory.
Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这很容易。您只需要编写一个 Java 程序来解析 XML 文件并查找 UML 模型的类(名为“Class”的 XML 元素)。属性显示为嵌套元素(Classifier.feature,然后是 Attribute)
That´s quite easy. You just need to write a Java program that parses the XML File and look for the classes of the UML model (XML elements named "Class"). Attributs appear as nested elements (Classifier.feature and then Attribute)
你有3个选择。
You have 3 options.