I have created an .ecore and .genmodel metamodel from an .xsd file. I'am trying to create a model instance from an .xml file conforming to .xsd file (and in consequence to .ecore metamodel). How can I achieve this goal?
EMF - Convert XML model to XMI
3.1k Views Asked by lmove At
2
There are 2 best solutions below
1

Only you have to load your XML file in a EMF resource, setting the load option XMLResource.OPTION_SUPPRESS_DOCUMENT_ROOT
as true. After that you have to create an output resource setting the URI as your file .xmi
. Finally you get your root element from the XML model resource and insert it in your XMI model resource, after that you save your output model and it is done.
Resource loadResource = new ResourceImpl(sourceURI); //We create a resource with XML file uri as parameter, to load de XML model.
// Set option to load configuration file
Map options = new HashMap();
// The option below deleted Document root in output file
options.put(XMLResource.OPTION_SUPPRESS_DOCUMENT_ROOT, true);
loadResource.load(options); // Now we have load the XML model
// Create an output resource where copy element from input resource
Resource resourceOut = new Resource(targetURI); //We create a resource to XMI file
// Copying elements from input resource to output resource
EList<EObject> listObj = loadResource.getContents();
EObject obj = listObj.get(0);
resourceOut.getContents().add(obj);
resourceOut.save() //We serialize the resource to the XMI file
At the end I just need to change root node name. To achieve this goal you just need to follow the next steps:
In my case I replaced
With
Of course this could be made programmatically.