我的代码非常简单,我只想运行一个测试示例,但它会在标题中说明异常。
我试图解决它,但无法弄明白,有人可以帮忙解决这个问题吗?
public static void main(String args[]){
Model model=ModelFactory.createDefaultModel();
model.read("trainUnion.nt");
String str="PREFIX syntax:<http://www.w3.org/1999/02/22-rdf-syntax-ns#>"+
" select ?type"+
" where {?x syntax:type ?type}";
Query query=QueryFactory.create(str);
QueryExecution queryExecution=QueryExecutionFactory.create(query, model);
ResultSet rs=queryExecution.execSelect();
ResultSetFormatter.out(System.out, rs);
}
答案 0 :(得分:0)
解决方案是更新耶拿,正如@AndyS在评论中所说。问题也许应该删除或关闭......或者至少标记为已回答。