我试图使用OpenNLP来分析文本内容。但是当我使用代码时:
InputStream is = new FileInputStream("en-sent.bin");
FileInputStream
下有红色波浪线。它表示类型不匹配,无法从FileInputStream
转换为InputStream
。我已经导入了一些jar包,但我仍然不知道如何修复它。这与环境变量有关吗?
进口:
import org.omg.CORBA_2_3.portable.InputStream;
import java.io.FileInputStream;
答案 0 :(得分:1)
导入错误。删除行import org.omg.CORBA_2_3.portable.InputStream;
并替换为import java.io.InputStream;
。