在我的 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(系统找不到指定的路径)
我怎样才能克服这个问题?