在我下面的方法中,我在方法的net.sf.extJWNL回调中使用了包中的方法。但是,我使用的方法会抛出一个. 我想使用 .catch 关键字,而不是当前的 try-catch块。.anyMatch()Stream<Object>JWNLExceptionthrowsJWNLExceptionDictionary d = Dictionary.getDefaultResourceInstance();List<POS> POSList = new ArrayList<POS>(EnumSet.allOf(POS.class));boolean isWord = POSList.stream().anyMatch(c -> { try { return d.getIndexWord(c, word) != null; } catch (JWNLException e) { // TODO Auto-generated catch block e.printStackTrace(); return true; }});另外,我不能将它移动到一个单独的方法,因为我需要这个方法的局部变量 -d和word(参数)
添加回答
举报
0/150
提交
取消