Jena Sparql 和构建

发布于 2024-09-05 02:00:15 字数 898 浏览 2 评论 0原文

CONSTRUCTSELECT 的替代 SPARQL 结果子句。 CONSTRUCT 返回一个 RDF 图,而不是返回结果值表。例如,在以下 Java 代码中运行此查询会产生 HttpException: 406 Unacceptable。但如果我选择 SELECT ?x 而不是 CONSTRUCT 块,那就没问题了。 Jena 是否支持 CONSTRUCT?如果支持,如何支持? DBpedia 端点可接受这两个查询。

PREFIX : <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>

CONSTRUCT { 
    :France onto:anthem ?x
}

WHERE
{
  :France onto:anthem ?x .
}
Query query = QueryFactory.create("the query goes here");
QueryExecution qexec = QueryExecutionFactory.sparqlService("http://dbpedia.org/sparql",     query);
ResultSet results = qexec.execSelect();  
ResultSetFormatter.out(System.out, results, query);

CONSTRUCT is an alternative SPARQL result clause to SELECT. Instead of returning a table of result values, CONSTRUCT returns an RDF graph. For instance, running this query in the following Java code produces an HttpException: 406 Unacceptable. But if instead of the CONSTRUCT block, I choose SELECT ?x, it's just fine. Does Jena support CONSTRUCT, and if so, how? Both queries are acceptable to the DBpedia endpoint.

PREFIX : <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>

CONSTRUCT { 
    :France onto:anthem ?x
}

WHERE
{
  :France onto:anthem ?x .
}
Query query = QueryFactory.create("the query goes here");
QueryExecution qexec = QueryExecutionFactory.sparqlService("http://dbpedia.org/sparql",     query);
ResultSet results = qexec.execSelect();  
ResultSetFormatter.out(System.out, results, query);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

阳光下慵懒的猫 2024-09-12 02:00:15

Jena 支持 CONSTRUCT,但要获取结果,您需要调用不同的方法,因为 execSelectResultSet 仅适用于 SELECT< /code> 查询。请使用它:

Model results = qexec.execConstruct();
results.write(System.out, "TURTLE");

Model 是 Jena 用于访问 RDF 图的接口,请参阅 javadocs 了解详细信息。

Jena supports CONSTRUCT, but to get the result you need to call a different method, because execSelect and ResultSet are only for SELECT queries. Use this instead:

Model results = qexec.execConstruct();
results.write(System.out, "TURTLE");

Model is Jena's interface for accessing RDF graphs, see the javadocs for details.

魔法少女 2024-09-12 02:00:15

ResultSetFormatter.out(System.out, results, query) 找不到符号和标识符此时发生预期错误

ResultSetFormatter.out(System.out, results, query) cannot find symbol and identifier expected error occurs at this point

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文