在python中使用RDFLib创建RDF图以应用传感器本体(我用于传感器本体,也使用名称空间和Bnode,它是表示未给出URI或文字的资源的空白节点)。我尝试使用sparql在java中查询数据,因此我必须首先使用Jena TDB存储图形然后执行一个非常简单的查询:
String qs1 = "SELECT * {?s ?p ?o} LIMIT 10" ;
我用过
String source = "/path/graph.rdf";
FileManager.get().readModel( tdb, source);
dataset.begin(ReadWrite.READ) ;
String qs1 = "SELECT * {?s ?o ?p } " ;
try(QueryExecution qExec = QueryExecutionFactory.create(qs1, dataset)) {
ResultSet rs = qExec.execSelect() ;
ResultSetFormatter.outputAsJSON(rs) ;
}`
执行查询并以json格式观察数据。 我面临的问题是它什么都不返回! 这是输出:
{
"head": {
"vars": [ "s" , "o" , "p" ]
} ,
"results": {
"bindings": [
]
}
}
我制作了一个简单的代码来验证数据是否已存储:
StmtIterator iter = tdb.listStatements();
// print out the predicate, subject and object of each statement
while (iter.hasNext()) {
Statement stmt = iter.nextStatement(); // get next statement
Resource subject = stmt.getSubject(); // get the subject
Property predicate = stmt.getPredicate(); // get the predicate
RDFNode object = stmt.getObject(); // get the object
System.out.print(subject.toString());
System.out.print(" " + predicate.toString() + " ");
if (object instanceof Resource) {
System.out.print(object.toString());
} else {
// object is a literal
System.out.print(" \"" + object.toString() + "\"");
}
System.out.println(" .");
}
实际上它们存储在TDB数据库中。这是一些输出,其中包括Bnode的奇异表示,并根据一些文章,其中TDB与Bnode的反应方式使其看起来像。
6f98bd70:1543430b66e:-7fc3 http://www.loa-cnr.it/ontologies/DUL.owl#hasDataValue "37^^file:///data/rbe/workspace/openmtc-python/openmtc-gevent/xsd.float" .
-6f98bd70:1543430b66e:-7fc2 http://purl.oclc.org/NET/UNIS/fiware/iot-lite#hasunit http://purl.oclc.org/NET/ssnx/qu/unit#hPa .
-6f98bd70:1543430b66e:-7fc2 http://www.loa-cnr.it/ontologies/DUL.owl#hasDataValue "996.94^^file:///data/rbe/workspace/openmtc-python/openmtc-gevent/xsd.float" .
-6f98bd70:1543430b66e:-7fc1 http://purl.oclc.org/NET/UNIS/fiware/iot-lite#hasunit http://purl.oclc.org/NET/ssnx/qu/unit# .
-6f98bd70:1543430b66e:-7fc1 http://www.loa-cnr.it/ontologies/DUL.owl#hasDataValue "OK^^file:///data/rbe/workspace/openmtc-python/openmtc-gevent/xsd.float" .
-6f98bd70:1543430b66e:-7fc0 http://purl.oclc.org/NET/UNIS/fiware/iot-lite#hasunit http://purl.oclc.org/NET/ssnx/qu/unit#C .
-6f98bd70:1543430b66e:-7fc0 http://www.loa-cnr.it/ontologies/DUL.owl#hasDataValue "24.2^^file:///data/rbe/workspace/openmtc-python/openmtc-gevent/xsd.float" .
我还尝试了另一个使用朋友本体的朋友的图表,它运行正常。 Bnode是否可能导致此问题?
答案 0 :(得分:2)
尝试:SELECT * { { ?s ?p ?o } UNION { GRAPH ?g { ?s ?p ?o } } }
您的评论表明数据位于命名图中,但您只询问了未命名/默认图的查询。建议的查询在数据集中的任何位置查找所有内容。
答案 1 :(得分:0)
正如@AndyS所说,建议的查询工作正常。如果您不想使用union部分,只需像Andy建议的那样添加您需要的图形名称。它应该是这样的:
QueryExecution qExec = QueryExecutionFactory.create(qs1, YourGraphNameHERE));
ResultSet rs = qExec.execSelect() ;
ResultSetFormatter.outputAsJSON(rs) ;