我的问题是我在这段代码中找不到错误。我想用从文件中读取的字符串在构造函数中填充我的程序的一个字段(字符串集)。
`
public AnagramUserInput(){
Set<String> result = new TreeSet<String>();
Set<String> lexic = new TreeSet<String>();
File lexicon = new File("C:/Users/Konstanty Orzeszko/Desktop/do testu/english_words_WIN.txt");
try{
BufferedReader br = new BufferedReader(new FileReader(lexicon));
String word;
while(((word = br.readLine()) != null)) {
this.lexic.add(word);//Exception is throwned right in this line
}
br.close();
}catch(IOException exc) {
System.out.println(exc.toString());
System.exit(1);
}
}`
你能告诉我有什么问题/如何解决吗?非常感谢。