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

link|improve this question

25% accept rate
feedback

1 Answer

I would say that you need to be sure that you close both streams properly. In particular, you should close fis before opening fos to the same file name.

By the way, "xmlbase" is not a valid base URI for writing a model. If you don't want to use a base URI to generate relative URI's in the body of the output document, pass null for that argument.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.