我在使用google-speller-api.jar,它抛出异常
org.xeustechnologies.googleapi.spelling.SpellCheckException: java.io.FileNotFoundException: https://www.google.com/tbproxy/spell?lang=en&hl=en这是我的密码
SpellChecker spellChecker=new SpellChecker();
spellChecker.setLanguage(Language.ENGLISH);
SpellRequest spellRequest=new SpellRequest();
spellChecker.setOverHttps(true);
spellRequest.setText("aple");
SpellResponse spellResponse=spellChecker.check(spellRequest);发布于 2016-03-03 09:25:26
谷歌停止了这项服务,这就是为什么你会得到404错误,因为该服务是不可用的。
检查这个发行报告
https://stackoverflow.com/questions/35767912
复制相似问题