将Data属性值转换为Integer值

时间:2016-10-09 13:13:28

标签: jena ontology literals

我有数据属性值“Physics_Preferred_Category”,其中包含整数值1,2等。     我希望得到这个值,然后再进行计算。但它给了我异常/错误。

 OntProperty phypref=model.getOntProperty(ns+ "Physics_Preferred_Category");
  RDFNode myValue =indiv.getPropertyValue(phypref);
Literal phliteral= model.createTypedLiteral(myValue);
 int phsum=phliteral.getInt(); //error highlight this line
 int calculate= phsum+1;

0 个答案:

没有答案