您好我正在尝试使用 OpenNLP 中的标记器来开发一个 Maven 项目。它需要加载一个本地文件,但我不知道如何将它添加到项目中,这样即使我在其他机器上启动了项目,它仍然可以工作。如下,项目需要加载这个本地文件,我应该如何配置要添加到项目中的文件?
InputStream modelIn;
try {
modelIn = new FileInputStream("E:\\en-token.bin");
// Make sure the "en-token.bin" file is already in your local disk
TokenizerModel model = null;
try {
model = new TokenizerModel(modelIn);
} catch (IOException ex) {
ex.printStackTrace();
} finally {
if (modelIn != null) {
try {
modelIn.close();
} catch (IOException e) {
}
}
}
Tokenizer tokenizer = new TokenizerME(model);
String tokens[] = tokenizer.tokenize(string);
List<String> tokenResult = Arrays.asList(tokens);
return tokenResult;
} catch (FileNotFoundException ex) {
return null;
}