明明已经下载解压好相应的包stanford-corenlp-4.2.2.zip ,但是使用StanfordCoreNLP仍然出现如下错误:
Error: Could not find or load main class edu.stanford.nlp.pipeline.StanfordCoreNLP
原因是无法访问到jar包,解决方法
- 进入到解压后的目录下再使用:
cd stanford-corenlp-4.2.2
java -mx2g -cp "*" edu.stanford.nlp.pipeline.StanfordCoreNLP -annotators tokenize,ssplit,pos,lemma,ner,parse -ssplit.eolonly -tokenize.whitespace true -file ./test_one_cc_3 -outputFormat xml
- 或者指定jar包所在的目录:
java -mx2g -cp "./stanford-corenlp-4.2.2/*" edu.stanford.nlp.pipeline.StanfordCoreNLP -annotators tokenize,ssplit,pos,lemma,ner,parse -ssplit.eolonly -tokenize.whitespace true -file ./test_one_cc_3 -outputFormat xml
|