我无法访问位于此地址的Google拼写检查服务:
https://www.google.com/tbproxy/spell
有其他人遇到这个问题吗?当我尝试连接时,我一直得到“坏网关”。我很确定该服务是离线的。
有关于发生了什么的消息吗?我知道Google Drive在几周前因同一组错误消息而崩溃了。
答案 0 :(得分:0)
我也有这个问题。我得到503 Server Error
。这个问题绝对是谷歌的问题。 (N.B.我在Safari 6.0.3上)
具体......
503. That's an error.
The service you requested is not available at this time.
Service error -27. That’s all we know.
似乎谷歌的服务存在一些问题。希望他们能尽快修复它!
答案 1 :(得分:0)
您可以在Java代码下面尝试这个。这不需要任何API密钥。但请注意,如果您经常运行它,它将停止工作,因为谷歌阻止IP地址进行未来的通话。您可以在小数据集上使用它。不是理想的解决方案,但如果它是一段时间运行的批处理作业的一部分,那么这种方法可能是您可以接受的。
public static String getSpellCheckedText(String Text) throws Exception {
String google = "http://www.google.com/complete/search?output=toolbar&q=";
String search = Text;
String charset = "UTF-8";
String spellCheckedText = Text;
URL url = new URL(google + URLEncoder.encode(search, charset));
Reader reader = new InputStreamReader(url.openStream(), charset);
BufferedReader bufReader = new BufferedReader(reader);
String line = bufReader.readLine();
StringBuffer sBuffer = new StringBuffer();
while (line != null) {
sBuffer.append(line).append("\n");
line = bufReader.readLine();
}
String content = sBuffer.toString();
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();
InputSource is = new InputSource(new StringReader(content));
Document document = builder.parse(is);
NodeList nodeList = document.getElementsByTagName("suggestion");
if (nodeList != null && nodeList.getLength() > 0) {
org.w3c.dom.Node elm = nodeList.item(0);
if (elm.getNodeType() == Node.ELEMENT_NODE) {
Element suggestionElement = (Element)elm;
String suggestedString = suggestionElement.getAttribute("data");
if (suggestedString != null && suggestedString.trim().length() != 0) {
spellCheckedText = suggestedString.trim();
System.out.println(Text + " => "+ spellCheckedText);
}
}
}
return spellCheckedText;
}
答案 2 :(得分:-1)
同上,在这里。我真的依赖它来检查文本框中的拼写。它说“无法连接到Google拼写服务器。请检查您的互联网连接,然后重试”