org.xeustechnologies.googleapi.spelling.SpellCheckException: java.io.FileNotFoundException: https://www.google.com/tbproxy/spell?lang=en&hl=en

org.xeustechnologies.googleapi.spelling.SpellCheckException: java.io.FileNotFoundException: https://www.google.com/tbproxy/spell?lang=en&hl=en

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

Google 停止了此服务,这就是为什么您收到 404 错误,因为该服务不可用。

检查这个 issue report