如何使用 Sesame 查询 SPARQL 端点,例如 DBPedia?
How do I query a SPARQL endpoint such as DBPedia with Sesame?
我使用 Sesame triplestore 来存储我的数据。当我尝试将 Sesame 的查询界面与 dbpedia 等外部资源一起使用时,我没有得到任何结果。此查询 returns 在添加所有必要的前缀后使用 snorql 而不是 Sesame 结果:
select ?routes where {
dbpedia:Polio_vaccine dbpprop:routesOfAdministration ?routes
}
我需要更改什么?
您可以使用 Sesame 以各种方式查询任何 SPARQL 端点,包括 DBPedia,以编程方式或通过 Sesame 手动查询 Workbench。
使用 Workbench
使用 Sesame Workbench 工具,您可以通过为端点创建存储库代理来查询 DBPedia(或任何 public SPARQL 端点),如下所示:
select 'New repository' 和存储库类型菜单 select 'SPARQL endpoint proxy'。为代理提供标识符和可选的标题,然后单击 'next'。
填写查询端点的 SPARQL 端点URL。对于 public DBPedia 服务器,这应该是 http://dbpedia.org/sparql
。
点击 'create' 完成。
设置完成后,您可以从 'Query' 菜单查询它:
结果:
编程访问
您可以简单地创建一个连接到 DBPedia 端点的 SPARQLRepository
object:
Repository repo = new SPARQLRepository("http://dbpedia.org/sparql");
repo.initialize();
一旦你有了它,你就可以用它来执行 SPARQL 查询,就像在任何其他 Sesame 存储库上一样:
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();
}
我使用 Sesame triplestore 来存储我的数据。当我尝试将 Sesame 的查询界面与 dbpedia 等外部资源一起使用时,我没有得到任何结果。此查询 returns 在添加所有必要的前缀后使用 snorql 而不是 Sesame 结果:
select ?routes where {
dbpedia:Polio_vaccine dbpprop:routesOfAdministration ?routes
}
我需要更改什么?
您可以使用 Sesame 以各种方式查询任何 SPARQL 端点,包括 DBPedia,以编程方式或通过 Sesame 手动查询 Workbench。
使用 Workbench
使用 Sesame Workbench 工具,您可以通过为端点创建存储库代理来查询 DBPedia(或任何 public SPARQL 端点),如下所示:
select 'New repository' 和存储库类型菜单 select 'SPARQL endpoint proxy'。为代理提供标识符和可选的标题,然后单击 'next'。
填写查询端点的 SPARQL 端点URL。对于 public DBPedia 服务器,这应该是
http://dbpedia.org/sparql
。点击 'create' 完成。
设置完成后,您可以从 'Query' 菜单查询它:
结果:
编程访问
您可以简单地创建一个连接到 DBPedia 端点的 SPARQLRepository
object:
Repository repo = new SPARQLRepository("http://dbpedia.org/sparql");
repo.initialize();
一旦你有了它,你就可以用它来执行 SPARQL 查询,就像在任何其他 Sesame 存储库上一样:
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();
}