Dar*_*rio 2 rdf owl ontology jena
有没有一种方法可以从 OWL 本体文件中获取基本名称空间,而不使用 DOM 或类似的东西,而只使用 Jena 的 API?例如,来自 OWL 文件:
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:protege="http://protege.stanford.edu/plugins/owl/protege#"
xmlns="http://www.owl-ontologies.com/Ontology1254827934.owl#"
xmlns:xsp="http://www.owl-ontologies.com/2005/08/07/xsp.owl#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:swrl="http://www.w3.org/2003/11/swrl#"
xmlns:swrlb="http://www.w3.org/2003/11/swrlb#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xml:base="http://www.owl-ontologies.com/Ontology1254827934.owl">
Run Code Online (Sandbox Code Playgroud)
我怎样才能http://www.owl-ontologies.com/Ontology1254827934.owl在运行时得到?
小智 5
单程:
//Create the Ontology Model
OntModel model = ModelFactory.createOntologyModel();
//Read the ontology file
model.begin();
InputStream in = FileManager.get().open(FILENAME_HERE);
if (in == null) {
throw new IllegalArgumentException("File: " + filename + " not found");
}
model.read(in,"");
model.commit();
//Get the base namespace
model.getNsPrefixURI("");
Run Code Online (Sandbox Code Playgroud)