I'm new to this forum!
I can't save any writing update to my RDF/XML OWL file using Protege. Each time I close the application I then loose all my editing. I've used JENA library to read this file in the following way:
OntModel model = ModelFactory.createOntologyModel (OntModelSpec.OWL_DL_MEM,null); model.setNsPrefix(“”, ns); FileInputStream fis = new FileInputStream(this.sourceFile); model.read(fis,ns);
I tried to fix this issue by:
FileOutputStream fos = new FileOutputStream(this.sourceFile); model.writeAll(fos, "RDF/XML-ABBREV","xmlbase"); model.close();
But my file gets emptied and blank!!! If I try instead to rename the output file it works OK (being careful to avoid the output file matches the input file).
In the end, my question is: how can I update my OWL file?
Thank you very much for your support, Daniele