1

我正在使用 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);
4

1 回答 1

2

谷歌停止了这项服务,这就是您收到 404 错误的原因,因为该服务不可用。

检查此问题报告

于 2016-03-03T09:25:26.653 回答