我想向对象属性断言添加注释(注释),如下所示。
手机 → hasCamera → 8MP
我能够将这个特定的断言作为一个Statement
对象。现在我想给这个语句对象添加注释,但是没有任何直接的方法可以用 Jena 做到这一点。另一方面,我可以在 Protege 工具中轻松实现这一点。那么这只是 Protégé 的一个功能,还是有任何方法可以用 Jena 做到这一点?
基本上,我对此感兴趣,为两个资源之间的属性(链接)添加权重分数,即。移动和 8MP。
Jena 虽然通过 OntModels 对 OWL 有一些支持,但它实际上是一个基于 RDF 的 API。Jena 中的语句只是代表三元组的类,本身并不代表资源。如果要创建带注释的对象属性断言,则需要查看第 2.3 节 Translation of Axioms with Annotations from the OWL 2 Web Ontology Language Mapping to RDF Graphs。具体来说,您需要的是2.3.1 Axioms that Generate a Main Triple:
如果表 1 中与 ax' 类型对应的行包含一个主三元组 sp xlt .,则公理 ax 被转换为以下三元组:
s p xlt . _:x rdf:type owl:Axiom . _:x owl:annotatedSource s . _:x owl:annotatedProperty p . _:x owl:annotatedTarget xlt . TANN(annotation1, _:x) ... TANN(annotationm, _:x)
如果 ax' 的类型为 ... ObjectPropertyAssertion ...,就会出现这种情况。
引用的表 1 出现在前面的第2.1 节没有注释的公理的翻译中。
所以,要添加三元组
Mobile hasCamera 8MP
带有注释
hasWeightScore 6.7
您可以使用以下代码:
import com.hp.hpl.jena.ontology.AnnotationProperty;
import com.hp.hpl.jena.ontology.Individual;
import com.hp.hpl.jena.ontology.ObjectProperty;
import com.hp.hpl.jena.ontology.OntModel;
import com.hp.hpl.jena.ontology.OntModelSpec;
import com.hp.hpl.jena.rdf.model.ModelFactory;
import com.hp.hpl.jena.rdf.model.Resource;
import com.hp.hpl.jena.vocabulary.OWL;
import com.hp.hpl.jena.vocabulary.OWL2;
public class AnnotatedAxioms {
public static void main(String[] args) {
final String ns = "http://example.org/";
final OntModel model = ModelFactory.createOntologyModel( OntModelSpec.OWL_DL_MEM );
model.setNsPrefix( "ex", ns );
final Individual mobile = model.createIndividual( ns+"Mobile", OWL.Thing );
final ObjectProperty hasCamera = model.createObjectProperty( ns+"hasCamera" );
final Individual eightMP = model.createIndividual( ns+"8MP", OWL.Thing );
final AnnotationProperty hasWeightScore = model.createAnnotationProperty( ns+"hasWeightScore" );
final Resource axiom = model.createResource( OWL2.Axiom );
axiom.addProperty( OWL2.annotatedSource, mobile );
axiom.addProperty( OWL2.annotatedProperty, hasCamera );
axiom.addProperty( OWL2.annotatedTarget, eightMP );
axiom.addLiteral( hasWeightScore, 6.7 );
model.write( System.out, "RDF/XML-ABBREV" );
}
}
它产生以下本体:
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:ex="http://example.org/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
<owl:ObjectProperty rdf:about="http://example.org/hasCamera"/>
<owl:AnnotationProperty rdf:about="http://example.org/hasWeightScore"/>
<owl:Axiom>
<ex:hasWeightScore rdf:datatype="http://www.w3.org/2001/XMLSchema#double"
>6.7</ex:hasWeightScore>
<owl:annotatedTarget>
<owl:Thing rdf:about="http://example.org/8MP"/>
</owl:annotatedTarget>
<owl:annotatedProperty rdf:resource="http://example.org/hasCamera"/>
<owl:annotatedSource>
<owl:Thing rdf:about="http://example.org/Mobile"/>
</owl:annotatedSource>
</owl:Axiom>
</rdf:RDF>