Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I read .owl files in java and display its contents?

How do I read .owl files in java and display its contents?

like image 420
nagender Avatar asked Jul 29 '10 16:07

nagender


3 Answers

The OWL API in source forge (http://owlapi.sourceforge.net/) has all the basic functions, although the documentation is barely enough. You may end up wasting time figuring out how do the complex functions not shown in the examples.

I would recommend going for the Protege API for OWL files. (http://protegewiki.stanford.edu/wiki/ProtegeOWL_API_Programmers_Guide/). This API has good documentation and the wiki is easy to navigate. OWL files are not easy to work around because of its semantic nature and building your own API might not be easy. Protege also has SWRL API if you want to process axioms and rules.

like image 143
Guru Avatar answered Oct 23 '22 04:10

Guru


Use The OWL API.

like image 2
Kaarel Avatar answered Oct 23 '22 06:10

Kaarel


What's the context? OWL is an ontology format read by http://protege.stanford.edu/.

like image 1
Sam Coles Avatar answered Oct 23 '22 05:10

Sam Coles