// Output will be deleted on exit; to keep temporary file replace
// previous line with the following
// File output = File.createTempFile("saved_pizza", ".owl");
IRI documentIRI2 = IRI.create(output);
// save in OWL/XML format
m.saveOntology(o, new OWLXMLDocumentFormat(), documentIRI2);
// save in RDF/XML
m.saveOntology(o, documentIRI2);
// print out the ontology
StringDocumentTarget target = new StringDocumentTarget();
m.saveOntology(o, target);