我已经以NamedIndividual
的形式获得了对象(datatype
)及其坐标(X,Y)的本体。
个人看起来像这样:
<owl:NamedIndividual rdf:about="http://www.semanticweb.org/PredefinedOntology#Door1">
<rdf:type rdf:resource="http://www.semanticweb.org/PredefinedOntology#Objects"/>
<Y rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">20</Y>
<X rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">33</X>
</owl:NamedIndividual>
我执行SPARQL查询:
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX onto: <http://www.semanticweb.org/PredefinedOntology#>
SELECT ?objects ?X ?Y
WHERE {
?objects rdf:type owl:NamedIndividual
; onto:X ?X
; onto:Y ?Y
FILTER regex(str(?objects),"Door1")
}
我在Eclipse中的查询是这样的:
Model model = FileManager.get().loadModel("/home/aidos/workspace/OntologicalFramework/files/ontologies/NewOnt.owl");
String queryString = "//THE QUERY I'VE WRITTEN ABOVE IN A STRING FORM"
Query query = QueryFactory.create(queryString);
QueryExecution qexec = QueryExecutionFactory.create(query, model);
ResultSet results = qexec.execSelect();
ResultSetFormatter.out(System.out, results, query);
这使我返回打印到IDE控制台的结果集,如:
--------------------------
| objects | X | Y |
==========================
| onto:Window1 | 56 | 28 |
--------------------------
我需要的是获取整数56和28并将它们存储在int x
和int y
中。
有人可以帮我理解我怎样才能得到它们?
在调试过程中,我在DataSetImpl
dataset
的{{1}}
答案 0 :(得分:3)
每个 ResultSet 都可以通过QuerySolution方法以 next() 的形式访问每一行。然后,您可以使用 getLiteral(String) 等方法来获取具有指定名称的变量的文字值。还有其他一些获取变量值的方法: get(String)返回 RDFNode , getResource(String)返回资源强>
在这种情况下,您可以使用 get()或 getLiteral(),因为数字是文字,因此是RDF节点,但您无法使用 getResource(),因为数字不是资源(即非IRI)。