搭建Java OpenNLP项目的步骤如下:
<dependency>
<groupId>org.apache.opennlp</groupId>
<artifactId>opennlp-tools</artifactId>
<version>1.9.3</version>
</dependency>
import opennlp.tools.sentdetect.SentenceDetectorME;
import opennlp.tools.sentdetect.SentenceModel;
import opennlp.tools.util.Span;
public class OpenNLPExample {
public static void main(String[] args) {
try {
// 加载句子模型
InputStream modelIn = new FileInputStream("en-sent.bin");
SentenceModel model = new SentenceModel(modelIn);
SentenceDetectorME sentenceDetector = new SentenceDetectorME(model);
// 输入文本
String text = "Hello, how are you? I am fine.";
// 分句
Span[] sentences = sentenceDetector.sentPosDetect(text);
for (Span sentence : sentences) {
System.out.println(text.substring(sentence.getStart(), sentence.getEnd()));
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
加载语言模型:在该示例中,使用的是英语句子模型"en-sent.bin",需要将该模型文件放在项目的根目录下。
运行项目:运行项目,查看OpenNLP的功能是否正常工作。
这样就完成了一个简单的Java OpenNLP项目的搭建步骤。在实际项目中,可以根据需要使用不同的OpenNLP功能,例如词性标注、命名实体识别等。