2

我开始使用 Pellet 通过我的 OWLApi 应用程序创建推理器。与示例一样,我从以下代码开始:

Reasoner reasoner = new Reasoner( manager );

但是 Eclipse 在“new Reasoner”上给了我这个错误:

The type org.semanticweb.owl.model.OWLOntologyManager cannot be resolved. 
It is indirectly referenced from required .class files

我怎么解决这个问题?我在谷歌上搜索,但唯一的反应不清楚。

4

1 回答 1

2

这是一个类路径问题。org.semanticweb.owl.model.OWLOntologyManagereclipse在它的类路径上找不到。您不是直接导入此类,而是其他一些库。

尝试识别包含的库org.semanticweb.owl.model.OWLOntologyManager并将其添加到类路径中。

于 2010-06-21T12:56:32.003 回答