I could add OWL API in my netbeans library now i want to make connection with proteje and be able to read owl file in my local computer. do u have some source sample code related to it?
thx
I could add OWL API in my netbeans library now i want to make connection with proteje and be able to read owl file in my local computer. do u have some source sample code related to it?
thx
A simple example is something like this:
OWLOntologyDocumentSource source = new FileDocumentSource(new File("ontology.owl"));
OWLOntology o = OWLManager.createOWLOntologyManager().loadOntologyFromOntologyDocument(source);
For more examples check out the OWLAPI wiki