使用Jena查询Wikidata
目前,Wikidata有一个SPARQL终结点"https://query.wikidata.org/",我想使用Jena(3.0.1)查询此站点,我使用了以下代码,但我收到错误消息"终结点返回Content-Type:Text/html,这当前不支持SELECT查询"。有没有办法解决这个问题?相同的代码在DBpedia上运行得很好。谢谢
queryString = "PREFIX bd: <http://www.bigdata.com/rdf#>
" +
"PREFIX wikibase: <http://wikiba.se/ontology#>
" +
"PREFIX wdt: <http://www.wikidata.org/prop/direct/>
" +
"PREFIX wd: <http://www.wikidata.org/entity/>
" +
"SELECT DISTINCT ?country ?countryLabel
" +
"WHERE
" +
"{
" +
" ?country wdt:P31 wd:Q3624078 .
" +
" ?country wdt:P1622 wd:Q13196750.
" +
" ?country wdt:P30 wd:Q15
" +
" FILTER NOT EXISTS {?country wdt:P31 wd:Q3024240}
" +
" SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
" +
"}
" +
"ORDER BY ?countryLabel";
query = QueryFactory.create(queryString);
qexec = QueryExecutionFactory.sparqlService("https://query.wikidata.org/", queryString);
try {
ResultSet results = qexec.execSelect();
ResultSetFormatter.out(System.out, results, query);
} catch (Exception ex) {
System.out.println(ex.getMessage());
} finally {
qexec.close();
}
解决方案
根据the documentation,终结点的末尾有一个/SPARQL。上面写着
SPARQL查询可以通过对
https://query.wikidata.org/sparql?query={SPARQL}
的GET请求直接提交到SPARQL端点(POST和其他方法请求将被拒绝,并带有"403禁止")。默认情况下,结果以XML形式返回,如果提供了查询参数Format=json或头文件Accept:Application/SPARQL-Results+json,则以JSON形式返回。
相关文章