如何在 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) {
}
}
}
}
}