0

在我的 servlet 中,我编写了以下语句来加载本体文件

File fileBase = new File("src/java/ontology/ontology.owl");
SimpleIRIMapper iriMapper =  new SimpleIRIMapper(IRI.create("src/java/ontology/AOA.owl"),
            IRI.create(fileBase));

但是当我运行该项目时,出现以下异常

org.semanticweb.owlapi.io.OWLOntologyInputSourceException: java.io.FileNotFoundException: src\java\ontology\ontology.owl(系统找不到指定的路径)

我怎样才能克服这个问题?

4

1 回答 1

0

提供绝对路径/将文件放在类路径中 File fileBase = new File("ontology.owl");

于 2013-03-28T15:40:37.027 回答