繁体   English   中英

使用sparql查询Jena从OWL文件中检索个人

[英]retrieve individuals from OWL file using sparql query Jena

这是我的CS.owl的一部分,它显示了CloudService类的各个DropBox。

 <!-- http://www.semanticweb.org/ontologies/SaaS-24-03-2013.owl#DropBox -->
    <owl:NamedIndividual rdf:about="&SaaS-24-03-2013;DropBox">
        <rdf:type rdf:resource="&SaaS-24-03-2013;CloudService"/>
        <hasPriceModel rdf:resource="&SaaS-24-03-2013;Freemium"/>
        <hasDeliveryModel rdf:resource="&SaaS-24-03-2013;Software-as-a-Service"/>
    </owl:NamedIndividual>

我需要使用Jena检索CloudService类的个人(例如DropBox)。 以下SPARQL查询可在Protege 4.3中完美运行。 它检索许多服务,包括“ DropBox”。 我需要使用耶拿运行它。 这是我的代码

        String query = "PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> "+
                        "PREFIX owl: <http://www.w3.org/2002/07/owl#> "+
                            "PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> "+
                                "PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> "+
                                    "PREFIX : <http://www.semanticweb.org/ontologies/SaaS-24-03-2013.owl#> "+
                                        "SELECT ?Service "+
                                                " WHERE {"+
                                            " ?Service  a   :CloudService} "; 
           model = ModelFactory.createOntologyModel(OntModelSpec.OWL_MEM_RULE_INF);
                model.read("ontologies/CS.owl");
        Query query = QueryFactory.create(SparqlQuery);
                QueryExecution qe = QueryExecutionFactory.create(query, model);
                com.hp.hpl.jena.query.ResultSet results =  qe.execSelect();         
    qe.close();
ResultSetFormatter.out(System.out, results);
}

查询在列标题下返回空结果。当它在Protege上工作并返回结果(包括DropBox)时,我的代码有什么问题?

您关闭了执行qe然后尝试打印结果。 代码必须完成处理结果,并调用qe.close 移动ResultSetFormatter行。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM