-1

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

1 回答 1

0

在 Netbeans 中运行时的当前工作目录是基础项目目录(其中包含 build.xml 的目录)。将您的 .bin 文件放在那里,您应该能够像这样打开该文件。

于 2013-09-10T13:00:05.933 回答