我正在尝试运行SPARQL查询。我将Jena Java API加载到Eclipse中的项目中。 我对使用Jena的SPARQL查询和编程完全陌生。 以下是我使用的代码:
import java.util.Iterator;
import org.apache.jena.iri.impl.Main;
import com.hp.hpl.jena.query.Query;
import com.hp.hpl.jena.query.QueryExecution;
import com.hp.hpl.jena.query.QueryExecutionFactory;
import com.hp.hpl.jena.query.QueryFactory;
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 Sample {
public static void main(String[] args) {
// TODO Auto-generated method stub
sparqlTest();
}
static void sparqlTest(){
FileManager.get().addLocatorClassLoader(Main.class.getClassLoader());
Model model = FileManager.get().loadModel("yago2core_20120109.rdfs");
String queryString = "PREFIX rdf:<http://www.w3.org/1999/02/22-rdf-syntax-ns#>"+
"SELECT * WHERE {"+
"<http://yago-knowledge.org/resource/Albert_Einstein> ?p <http://yago-knowledge.org/resource/Alfred_Kleiner>" +
"}";
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("p");
System.out.println(name);
}
}
finally{
qexec.close();
}
}
}
运行此程序时出现以下错误:
WARN riot :: {W137} Input is large. Switching off checking for illegal reuse of rdf:ID's.
有人可以帮我吗?正如我之前所说,我对SPARQL查询完全陌生。
提前谢谢。