2

我已经开发了自己的本体(我定义了我的类、属性等),我想用 sparql 询问我的本体。

在 protégé 2000(开源本体编辑器)中一切正常,但是当我想在 python 中实现我的请求 sparql 时遇到了一些问题。

我用 Java 完成了它并且它有效,但这不是我想要的,我想用它来做pyjnius(一个 Python 模块,将 Java 类作为 Python 类访问)但也没有任何效果。

我如何使用 sparql 来询问我的本体?有什么方法可以在 Python 中使用 jena 吗?

这就是我用java做的:

try{    

    Model model = ModelFactory.createDefaultModel();
    String FName = "C:\\Users\\p\\Desktop\\protégé project jour\\jour.owl";
    InputStream inStr = FileManager.get().open(FName);
    if (inStr == null) { throw new IllegalArgumentException("Fichier non trouvé");}
    // Lire le fichier RDF vers le modèle précédemment créé.
    model.read(inStr, "");

    //****************************


    String requete =
    //***=====This is the query that works good in the ontology with      properties between classes

    "PREFIX OntoJO:<http://www.owl-ontologies.com/Ontology1400008538.owl#>" +           
    "SELECT ?path " +
    "WHERE { "

    + " ?n OntoJO:signee_par '"+choixsignrech1.getText()+"' ." 
    + " ?s OntoJO:mot_cle '"+choixclrech1.getText()+"' ." 
    + " ?m OntoJO:secteur '"+choixsecrech1.getSelectedItem()+"' ."
    + " ?f OntoJO:ministere '"+choixminisrech1.getSelectedItem()+"' ."
    + " ?r OntoJO:synonymes '"+choixsyrech1.getText()+"' ."


    + "?n OntoJO:a_un_chemin ?y . "
    + "?s OntoJO:a_un_chemin ?y . "
    + "?m OntoJO:a_un_chemin ?y . "
    + "?f OntoJO:a_un_chemin ?y . "
    + "?r OntoJO:a_un_chemin ?y . "

    + "?y OntoJO:chemin ?path . }";



    Query query = QueryFactory.create(requete);
    QueryExecution qexec = QueryExecutionFactory.create(query, model);

    try {
        ResultSet results = qexec.execSelect();
        while (results.hasNext()){
            QuerySolution soln = results.nextSolution();
            RDFNode name = soln.get("path");
            System.out.println(name);
            javax.swing.JOptionPane.showMessageDialog(this,soln.get("path"));
        }
    } finally
    {
        qexec.close();
    } 

属性是:signee_par、mot_cle、secteur、ministere 等.....(法语),sqarql 请求基于这些属性

我想用python来做,有人知道我怎么做吗?!

4

1 回答 1

2

如果您想使用 Jena Fuseki,请查看此内容。 Python中的耶拿TDB?

我可以建议一种使用 rdflib 的方法。我使用 rdflib 的工作仅限于简单的查询和序列化。最简单的方法是加载您的图表(以任何 RDF 格式 nt、ttl 等)查询图表并根据需要格式化结果。

import rdflib

graph = rdflib.Graph()
graph = graph.parse("triples.nt",format = "nt")
query =  "PREFIX OntoJO:<http://www.owl-ontologies.com /Ontology1400008538.owl#>" +\
"SELECT ?path " +\
"WHERE { "\
\
+ " ?n OntoJO:signee_par '"+choixsignrech1.getText()+"' ." \
+ " ?s OntoJO:mot_cle '"+choixclrech1.getText()+"' ." \
+ " ?m OntoJO:secteur '"+choixsecrech1.getSelectedItem()+"' ."\
+ " ?f OntoJO:ministere '"+choixminisrech1.getSelectedItem()+"' ."\
+ " ?r OntoJO:synonymes '"+choixsyrech1.getText()+"' ."\


+ "?n OntoJO:a_un_chemin ?y . "\
+ "?s OntoJO:a_un_chemin ?y . "\
+ "?m OntoJO:a_un_chemin ?y . "\
+ "?f OntoJO:a_un_chemin ?y . "\
+ "?r OntoJO:a_un_chemin ?y . "\
+ "?y OntoJO:chemin ?path . }"
result = graph.query(query)
#The result will be a QueryRow object because of the SELECT , look in the docs for further info.
for i in result:
     print i[0]

我忽略了替换您的 getText 呼叫,请注意。上面的代码是针对 python2 的,应该打印出关于 Triple.nt 数据的所有查询结果

请发表评论,让我知道您对此答案的看法。关于 rdflib 的资源并不多,所以如果您有任何与此相关的问题,请联系我,我很乐意探索它。

于 2016-08-07T18:22:59.190 回答