您好我正在尝试在OpenNLP中使用tokenizer来开发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;
}
答案 0 :(得分:1)
此类文件应放入 src / main / resources 文件夹中,该文件夹将打包到jar文件中。