为什么在形成SPARQL Construct查询时将前缀替换为ns2

时间:2013-07-25 23:22:28

标签: sparql jena

我想用CONSTRUCT替换我的SPARQL结果集中的属性,它基本上有效,除了前缀自动被“ns2”替换。有谁知道为什么,以及如何避免它?

查询负责人

" PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> " +
" PREFIX ma: <http://www.w3.org/ns/ma-ont#> " +
" PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> " +
" CONSTRUCT { ?subject ma:title ?label }  " +
 " WHERE { "+
 " ?subject rdfs:label ?label. " +

示例结果:

<http://dbpedia.org/resource/Japantown,_San_Francisco> ns2:title  "Japantown, San Francisco"@en 

1 个答案:

答案 0 :(得分:4)

问题

对于它的价值,它看起来不像 Jena 这样做,而是(假设存在DBpedia资源意味着您正在查询DBpedia)DBpedia的端点。鉴于这个简单的数据:

@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ma: <http://www.w3.org/ns/ma-ont#> .

<http://dbpedia.org/resource/Japantown,_San_Francisco> rdfs:label  "Japantown, San Francisco"@en .

和这个查询:

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX ma: <http://www.w3.org/ns/ma-ont#>

CONSTRUCT { ?subject ma:title ?label }
WHERE { 
  ?subject rdfs:label ?label 
}

Jena的ARQ似乎在RDF / XML和TURTLE中都保留了前缀:

$ arq --data data.n3 --query construct.sparql --results RDF/XML
   
<rdf:RDF
    xmlns:ma="http://www.w3.org/ns/ma-ont#"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
  <rdf:Description rdf:about="http://dbpedia.org/resource/Japantown,_San_Francisco">
    <ma:title xml:lang="en">Japantown, San Francisco</ma:title>
  </rdf:Description>
</rdf:RDF>
$ arq --data data.n3 --query construct.sparql
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ma:      <http://www.w3.org/ns/ma-ont#> .

<http://dbpedia.org/resource/Japantown,_San_Francisco>
      ma:title      "Japantown, San Francisco"@en .

然而,在DBpedia public SPARQL endpoint上运行一个非常相似的查询(注意保持我们的结果很小的值)会获得你提到的自动生成的命名空间前缀。

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX ma: <http://www.w3.org/ns/ma-ont#>

CONSTRUCT { ?subject ma:title ?label }
WHERE { 
  VALUES ?subject { <http://dbpedia.org/resource/Japantown,_San_Francisco> }
  ?subject rdfs:label ?label 
}

SPARQL Results

@prefix ns0:    <http://www.w3.org/ns/ma-ont#> .
<http://dbpedia.org/resource/Japantown,_San_Francisco>  ns0:title   "Japantown, San Francisco"@en .

请注意,这些结果是相同的RDF图;前缀只是让一些输出更具可读性的便捷方式。任何RDF处理工具都会看到它们完全相同。 Jena没有做错任何事(事实上,Jena很好,因为它保留了前缀),但是在DBpedia上运行的Virtuoso实例也没有。

保留前缀

虽然前缀仅影响图形序列化的 human 可读性,但图形序列化的人类可读性可能很重要。有一些方法可以保留前缀,即使DBpedia已经改变了你。

使用联合查询(SERVICE)

在命令行上使用ARQ(如上所示),本地可用的数据在构造的模型中保留所需的前缀。我们可以编写一个实际上远程查询DBpedia的类似查询,但由于实际构建图形是ARQ的工作,因此前缀最终会达到预期的效果。例如:

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX ma: <http://www.w3.org/ns/ma-ont#>

CONSTRUCT { ?subject ma:title ?label }
WHERE { 
  VALUES ?subject { <http://dbpedia.org/resource/Japantown,_San_Francisco> }
  SERVICE <http://dbpedia.org/sparql> {
    ?subject rdfs:label ?label 
  }
}

ARQ仍需要--data参数,因此我创建了一个空文件empty-data.n3。我们在这里想要的数据实际上来自DBpedia。

$ arq --data empty-data.n3 --query construct-remote.sparql
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ma:      <http://www.w3.org/ns/ma-ont#> .

<http://dbpedia.org/resource/Japantown,_San_Francisco>
      ma:title      "Japantown, San Francisco"@en .

更改Jena模型中的前缀(PrefixMapping)

由于Jena Model是PrefixMapping,您可以更改使用的前缀。这是运行远程查询的Java代码(不使用联合查询),然后更新前缀。

import com.hp.hpl.jena.query.QueryExecutionFactory;
import com.hp.hpl.jena.rdf.model.Model;
import com.hp.hpl.jena.vocabulary.RDFS;

public class RemoteQueryPrefixChange {
    final static String MA_NS = "http://www.w3.org/ns/ma-ont#";

    final static String queryString = "" +
            "PREFIX rdfs: <"+RDFS.getURI()+">\n" +
            "PREFIX ma: <"+MA_NS+">\n" +
            "\n" +
            "CONSTRUCT { ?subject ma:title ?label }\n" +
            "WHERE {\n" +
            "  VALUES ?subject { <http://dbpedia.org/resource/Japantown,_San_Francisco> }\n" +
            "  ?subject rdfs:label ?label\n" +
            "}\n" +
            ""; 

    final static String DBPEDIA_SERVICE = "http://dbpedia.org/sparql";

    public static void main(String[] args) {
        Model results = QueryExecutionFactory.sparqlService( DBPEDIA_SERVICE, queryString ).execConstruct();
        System.out.println( "== Original Prefixes ==" );
        results.write( System.out, "TTL" );
        System.out.println( "== Updated Prefixes ==" );
        results.removeNsPrefix( results.getNsURIPrefix( MA_NS ));
        results.setNsPrefix( "ma", MA_NS);
        results.write( System.out, "TTL" );
    }
}

输出是(注意模型原始序列化中的ns2和更新序列化中的ma

== Original Prefixes ==
@prefix ns2:     <http://www.w3.org/ns/ma-ont#> .
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .

<http://dbpedia.org/resource/Japantown,_San_Francisco>
      ns2:title "Japantown, San Francisco"@en .
== Updated Prefixes ==
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ma:      <http://www.w3.org/ns/ma-ont#> .
@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .

<http://dbpedia.org/resource/Japantown,_San_Francisco>
      ma:title "Japantown, San Francisco"@en .