如何在耶拿添加 <owl:Ontology rdf:about="..."/>?
How to add <owl:Ontology rdf:about="..."/> in Jena?
我正在使用 apache jena 创建 ontology。
如何使用 jena 库添加以下简单语句?
<owl:Ontology rdf:about="http://example.owl"/>
正如 AKSW 正确指出的那样,需要在模型本身上调用方法 (createOntology
):
model.createOntology("http://example.owl");
我正在使用 apache jena 创建 ontology。 如何使用 jena 库添加以下简单语句?
<owl:Ontology rdf:about="http://example.owl"/>
正如 AKSW 正确指出的那样,需要在模型本身上调用方法 (createOntology
):
model.createOntology("http://example.owl");