我使用Sesame triplestore来存储我的数据。当我尝试使用带有Sesame的查询接口和外部资源(如dbpedia)时,我没有得到任何结果。在添加所有必需的前缀后,此查询返回带有snorql但不返回Sesame的结果:
select ?routes where {
dbpedia:Polio_vaccine dbpprop:routesOfAdministration ?routes
}
我需要改变什么?
答案 0 :(得分:6)
您可以使用Sesame以各种方式查询任何SPARQL端点,包括DBPedia,可以通过Sesame Workbench以编程方式或手动方式查询。
使用Sesame Workbench工具,您可以通过为该端点创建存储库代理来查询DBPedia(或任何公共SPARQL端点),如下所示:
选择“新建存储库”,然后在存储库类型菜单中选择“SPARQL端点代理”。为代理提供标识符和可选的标题,然后单击“下一步”。
填写查询端点的SPARQL端点URL。对于公共DBPedia服务器,这应该是http://dbpedia.org/sparql
。
点击“创建”结束。
设置完成后,您可以在“查询”菜单中查询:
结果:
您只需创建一个连接到DBPedia端点的SPARQLRepository
对象:
Repository repo = new SPARQLRepository("http://dbpedia.org/sparql");
repo.initialize();
一旦拥有了它,就可以像使用任何其他Sesame存储库一样执行SPARQL查询:
RepositoryConnection conn = repo.getConnection();
try {
StringBuilder qb = new StringBuilder();
qb.append("PREFIX dbpedia: <http://dbpedia.org/resource/> \n");
qb.append("PREFIX dbpprop: <http://dbpedia.org/property/> \n");
qb.append("SELECT ?routes \n");
qb.append("WHERE { dbpedia:Polio_vaccine dbpprop:routesOfAdministration ?routes } \n");
TupleQueryResult result =
conn.prepareTupleQuery(QueryLanguage.SPARQL, qb.toString()).evaluate();
while(result.hasNext()) {
BindingSet bs = result.next();
Value route = bs.getValue("routes");
System.out.println("route = " + route.stringValue());
}
}
finally {
conn.close();
}