如何在netbeans中使用opennlp。我在apache文档中创建了一个小程序,但它无法正常工作。我已经设置了如apache文档中所述的opennlp bin的路径,但我仍然没有输出输出。它无法找到.bin和SentenceModel模型。 包sp;
public class Sp {
public static void main(String[] args) throws FileNotFoundException {
InputStream modelIn ;
modelIn = new FileInputStream("en-token.bin");
try {
SentenceModel model = new SentenceModel(modelIn);
}
finally {
if (modelIn != null) {
try {
modelIn.close();
}
catch (IOException e) {
}
}
}
}
}
答案 0 :(得分:0)
在Netbeans中运行时的当前工作目录是基础项目目录(包含build.xml的目录)。将.bin文件放在那里,你应该能够打开这样的文件。