我使用Apache Jena查询DBpedia以获取特定主题的Wikipedia URL。
所以我使用
加载模型 Model teamModel= RDFDataMgr.loadModel(teamURLStrInDBPedia+".rdf");
然后我想访问isPrimaryTopicOf
属性但不知道如何在不运行此新模型的情况下运行另一个SPARQL查询。
答案 0 :(得分:0)
It's not clear what you mean by accessing a property. You can use a the SimpleSelector class to get the statements that use that property.
teamModel.listStatements(new SimpleSelector(null, FOAF.isPrimaryTopicOf, (RDFNode) null))