使用jena fuseki服务器查询rdf文件时获取异常

时间:2016-03-19 14:14:43

标签: java sparql rdf jena ontology

这是我的java代码,我试图使用jena查询我的rdf文件,但它给了我关于文字的例外。我使用protege工具设计了rdf文件,并尝试使用jena进行查询。

Exception in thread "main" java.lang.ClassCastException: com.hp.hpl.jena.rdf.model.impl.ResourceImpl cannot be cast to com.hp.hpl.jena.rdf.model.Literal
at com.hp.hpl.jena.sparql.core.QuerySolutionBase.getLiteral(QuerySolutionBase.java:26)
at emotion.sparqltest(emotion.java:36)
at emotion.main(emotion.java:16)

我的java代码如下......

import com.hp.hpl.jena.query.Query;
import com.hp.hpl.jena.query.QueryFactory;
import com.hp.hpl.jena.query.QueryExecution;
import com.hp.hpl.jena.query.QueryExecutionFactory;
import com.hp.hpl.jena.query.QuerySolution;
import com.hp.hpl.jena.query.ResultSet;
import com.hp.hpl.jena.rdf.model.Literal;
import com.hp.hpl.jena.rdf.model.Model;
import com.hp.hpl.jena.util.FileManager;

public class emotion {
public static void main(String[] args) {
    // TODO Auto-generated method stub

sparqltest();}

static void sparqltest()
{

FileManager.get().addLocatorClassLoader(emotion.class.getClassLoader());
Model model= FileManager.get().loadModel("C:/Users/avg/workspacejena32/Jena/bin/emotion.rdf");

String queryString="PREFIX uni:<http://www.semanticweb.org/avg/ontologies/2016/2/untitled-ontology-5#>" +
               "SELECT * WHERE {" +
               "uni:angry uni:says ?x}";



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

try {
    ResultSet results = qexec.execSelect();while ( results.hasNext()){
    QuerySolution soln = results.nextSolution();
    Literal name = soln.getLiteral("x");
    System.out.println(name);
}
} 

finally {
qexec.close();
    }}}

如果我在此查询中做了一些更改

"uni:angry uni:says ?words"

然后我得到如下的null结果

null
null

1 个答案:

答案 0 :(得分:2)

Literal name = soln.getLiteral("x");

?x不是文字 - 它是URI或空白节点。

使用uni:angry uni:says ?words时,未设置?x。