Java代码实现OWLAnnotationPropertyAssertionAxiom

时间:2019-01-24 14:51:45

标签: rdf owl ontology owl-api turtle-rdf

我想在三元组上添加注释断言。我尝试使用Protege做同样的事情,并且能够实现这一目标。从Protege生成的RDF / XMl如下所示:

<owl:Axiom>
        <owl:annotatedSource rdf:resource="http://www.semanticweb.org/smrat/ontologies/2019/0/untitled-ontology-1388#Peter"/>
        <owl:annotatedProperty rdf:resource="http://www.semanticweb.org/smrat/ontologies/2019/0/untitled-ontology-1388#eats"/>
        <owl:annotatedTarget rdf:resource="http://www.semanticweb.org/smrat/ontologies/2019/0/untitled-ontology-1388#Apple"/>
        <weight rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</weight>
    </owl:Axiom>

我想使用owldistribution-api实现相同的目的。如果有人做过,将不胜感激! 谢谢!

0 个答案:

没有答案