我是耶拿的新手。我想创建一个新的OntModel并需要将一些其他本体导入到这个模型中。如果我把它写入文件,我希望该文件可以显示如下内容:
<owl:Ontology rdf:about="">
<owl:imports rdf:resource="http://test.owl#"/>
</owl:Ontology>
现在,我不知道如何通过jena将其他本体导入模型。任何人都可以给我一些建议吗?
谢谢
答案 0 :(得分:5)
请参阅jena的Ontology API(位于RDF api上),尤其是imports部分。
要制作您想要的东西,请尝试:
String base = "http://www.example.com/ont";
OntModel model = ModelFactory.createOntologyModel();
Ontology ont = model.createOntology("");
ont.addImport(model.createResource("http://test.owl#"));
model.write(System.out, "RDF/XML-ABBREV", base);
结果:
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xml:base="http://www.example.com/ont">
<owl:Ontology rdf:about="">
<owl:imports rdf:resource="http://test.owl#"/>
</owl:Ontology>
</rdf:RDF>