使用JENA JAVA的SPARQL查询打印文字

时间:2017-02-13 20:50:53

标签: sparql jena semantic-web ontology protege

我正在尝试为这个猫头鹰模型编写一个查询。

:Sensor rdf:type owl:Class;
:hasId rdf:type owl:DatatypeProperty,
                rdfs:domain :Sensor;
                rdfs:range xsd:int.
:MedicalCountainer rdf:type :owlNamedIndividual,
                            :Sensor;
                            :hasId "55"^^xsd:int .

我想使用sensor-id来检索传感器名称。 这是我的java查询,但我不知道它为什么不打印任何东西。我知道我的查询是正确的,因为我会得到答案。

String file = "C:/users/src/data.ttl";
Model model = FileManager.get().loadModel(file);
String queryString = "PREFIX : <http://semanticweb.org/sensor#>" +
                     "SELECT ?sensor" +
                     "WHERE {?sensor :hasId \"55"\^^<xsd:int>}";
Query query = QueryFactory.create(queryString);
try (QueryExecution qexec = QueryExecutionFactory.create(query, model)) {
          ResultSet result = qexec.execSelect();
          for ( ; result.hasNext(); ) {
                  QuerySolution soln = result.nextSolution();
                  Resource r = soln.getResource("sensor");
                  System.out.println(r);
          }
}

1 个答案:

答案 0 :(得分:2)

SPARQL查询中文字的使用是错误的。要么使用

  1. 文字的前缀URI,即"55"^^xsd:int
  2. 您将完整的URI放入尖括号,即"55"\^^<http://www.w3.org/2001/XMLSchema#int>
  3. 但不是两者的混合。

    并且总是希望将所有PREFIX声明添加到SPARQL查询的开头,以确保在所有SPARQL服务中正确解析:

    PREFIX : <http://semanticweb.org/sensor#>
    PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
    SELECT ?sensor
    WHERE {
      ?sensor :hasId "55"^^xsd:int
    }