gpt4 book ai didi

java - 使用 sparql 查询 Jena 从 OWL 文件中检索个体

转载 作者:行者123 更新时间:2023-12-01 10:20:08 27 4
gpt4 key购买 nike

这是我的 CS.owl 的一部分,显示了 CloudService 类的单个 DropBox。

 <!-- http://www.semanticweb.org/ontologies/SaaS-24-03-2013.owl#DropBox -->
<owl:NamedIndividual rdf:about="&SaaS-24-03-2013;DropBox">
<rdf:type rdf:resource="&SaaS-24-03-2013;CloudService"/>
<hasPriceModel rdf:resource="&SaaS-24-03-2013;Freemium"/>
<hasDeliveryModel rdf:resource="&SaaS-24-03-2013;Software-as-a-Service"/>
</owl:NamedIndividual>

我需要使用 Jena 检索 CloudService 类的个体(例如 DropBox)。以下 SPARQL 查询在 Protege 4.3 中完美运行。它检索许多服务,包括“DropBox”。我需要使用 Jena 来运行它。这是我的代码

        String query = "PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> "+
"PREFIX owl: <http://www.w3.org/2002/07/owl#> "+
"PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> "+
"PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> "+
"PREFIX : <http://www.semanticweb.org/ontologies/SaaS-24-03-2013.owl#> "+
"SELECT ?Service "+
" WHERE {"+
" ?Service a :CloudService} ";
model = ModelFactory.createOntologyModel(OntModelSpec.OWL_MEM_RULE_INF);
model.read("ontologies/CS.owl");
Query query = QueryFactory.create(SparqlQuery);
QueryExecution qe = QueryExecutionFactory.create(query, model);
com.hp.hpl.jena.query.ResultSet results = qe.execSelect();
qe.close();
ResultSetFormatter.out(System.out, results);
}

查询在列标题下返回空结果虽然它适用于 Protege 并返回结果(包括 DropBox)我的代码有什么问题吗?

最佳答案

您关闭了执行qe,然后尝试打印结果。代码必须调用 qe.close 来完成对结果的处理。移动 ResultSetFormatter 行。

关于java - 使用 sparql 查询 Jena 从 OWL 文件中检索个体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35646637/

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