gpt4 book ai didi

java - 使用 Jena API 进行基本 RDFS 推理

转载 作者:行者123 更新时间:2023-12-01 14:42:27 25 4
gpt4 key购买 nike

我目前正在学习 Jena API 推理教程:

https://jena.apache.org/documentation/inference/

作为测试我的理解的练习,我想重写第一个示例,该示例演示了通过编程构建的模型进行的简单 RDFS 推理:

import com.hp.hpl.jena.rdf.model.*;
import com.hp.hpl.jena.vocabulary.*;

public class Test1 {
static public void main(String...argv) {
String NS = "foo:";
Model m = ModelFactory.createDefaultModel();
Property p = m.createProperty(NS, "p");
Property q = m.createProperty(NS, "q");
m.add(p, RDFS.subPropertyOf, q);
m.createResource(NS + "x").addProperty(p, "bar");
InfModel im = ModelFactory.createRDFSModel(m);
Resource x = im.getResource(NS + "x");
// verify that property q of x is "bar" (which follows
// from x having property p, and p being a subproperty of q)
System.out.println("Statement: " + x.getProperty(q));
}
}

做同样的事情,但模型是从这个 Turtle 文件中读取的(这是我自己对上述内容的翻译,因此可能有错误):

@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
@prefix foo: <http://example.org/foo#>.

foo:p a rdf:Property.
foo:q a rdf:Property.
foo:p rdfs:subPropertyOf foo:q.
foo:x foo:p "bar".

使用此代码:

public class Test2 {
static public void main(String...argv) {
String NS = "foo:";
Model m = ModelFactory.createDefaultModel();
m.read("foo.ttl");
InfModel im = ModelFactory.createRDFSModel(m);
Property q = im.getProperty(NS + "q");
Resource x = im.getResource(NS + "x");
System.out.println("Statement: " + x.getProperty(q));
}
}

这似乎不是正确的方法(我特别怀疑我对 q 属性的提取在某种程度上是不正确的)。我做错了什么?

最佳答案

String NS = "foo:";
m.createResource(NS + "x")

创建一个 URI,但 Turtle 版本有 foo:x = http://example.org/foo#x

通过打印模型来查看差异 im.write(System.out, "TTL");

NS = "foo:" 更改为 NS = "http://example.org/foo#"

关于java - 使用 Jena API 进行基本 RDFS 推理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15817021/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com