gpt4 book ai didi

java - Virtuoso Jena API 中的 SPARQL 查询 "COUNT"- QueryParseException

转载 作者:行者123 更新时间:2023-12-01 18:11:25 24 4
gpt4 key购买 nike

相同的查询在 DBpedia Endpoint( http://ko.dbpedia.org/sparql ) 中有效,但在我的 Java 代码中无效。我只是想使用“COUNT”函数提取频率。

VirtGraph set = new VirtGraph("http://ko.dbpedia.org", HOST, USERNAME, PASSWORD);
Query freqsparql = QueryFactory.create("SELECT ?class count(distinct ?s) as ?count where{?s <http://ko.dbpedia.org/property/이름> ?o. ?s a ?class.} order by DESC(?count)");
VirtuosoQueryExecution freqvqe = VirtuosoQueryExecutionFactory.create(freqsparql, set);
ResultSet freqresults = freqvqe.execSelect();

错误如下。

Exception in thread "main" com.hp.hpl.jena.query.QueryParseException: Encountered " "count" "count "" at line 1, column 15.
Was expecting one of:
<VAR1> ...
<VAR2> ...
"from" ...
"where" ...
"(" ...
"{" ...

at com.hp.hpl.jena.sparql.lang.ParserSPARQL11.perform(ParserSPARQL11.java:102)
at com.hp.hpl.jena.sparql.lang.ParserSPARQL11.parse$(ParserSPARQL11.java:53)
at com.hp.hpl.jena.sparql.lang.SPARQLParser.parse(SPARQLParser.java:37)
at com.hp.hpl.jena.query.QueryFactory.parse(QueryFactory.java:148)
at com.hp.hpl.jena.query.QueryFactory.create(QueryFactory.java:80)
at com.hp.hpl.jena.query.QueryFactory.create(QueryFactory.java:53)
at com.hp.hpl.jena.query.QueryFactory.create(QueryFactory.java:41)

我正在使用 virt_jena2.jar 和 virtjdbc4.jar。我已经查看了类似的问题和答案(Jena ARQ 扩展和 SPARQL 1.1 支持此聚合查询 - 但我找不到如何更改它 - 我认为我正在使用 SPARQL1.1,因为错误消息包含 PARSERSPARQL11。 java ),但目前不知道如何解决这个问题。

提前致谢。

<小时/>
String sparqlQueryString = "SELECT ?class count(distinct ?s) as ?count    where{?s <http://ko.dbpedia.org/property/이름> ?o. ?s a ?class.} order by DESC(?count)";
Query query = QueryFactory.create(sparqlQueryString);
QueryExecution qexec = QueryExecutionFactory.sparqlService(
"http://ko.dbpedia.org/sparql", query);
try {
ResultSet results = qexec.execSelect();
while(results.hasNext()){
QuerySolution freqresult = results.nextSolution();
RDFNode domain = freqresult.get("class");
RDFNode freqcount = freqresult.get("count");
System.out.println(freqresult);
System.out.println(domain + "---" + freqcount);
}
} catch (Exception e) {
e.printStackTrace();
} finally {
qexec.close();
}

这个 Jena 代码(没有 Virtuoso)给了我同样的错误消息。

最佳答案

这是非法的 SPARQL 语法:

SELECT ... count(distinct ?s) as ?count where

应该是

SELECT ... (count(distinct ?s) as ?count) where

您将遇到以下 ?class 问题:

SELECT ?class (count(distinct ?s) as ?count) where

因为它不是一个分组变量(使用count你有一组所有的东西)。您的意思是有一个GROUP BY ?class吗?

关于java - Virtuoso Jena API 中的 SPARQL 查询 "COUNT"- QueryParseException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32730980/

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