4

公共 io 代码:

String resultURL = String.format(GOOGLE_RECOGNIZER_URL, URLEncoder.encode("hello", "UTF-8"), "en-US");
URI uri = new URI(resultURL);
byte[] resultIO = IOUtils.toByteArray(uri);

我得到了这个例外:

Exception in thread "main" java.io.IOException: Server returned HTTP response code: 403 for URL: http://translate.google.cn/translate_tts?ie=UTF-8&q=hello&tl=en-US&total=1&idx=0&textlen=3
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1436)
    at org.apache.commons.io.IOUtils.toByteArray(IOUtils.java:654)
    at org.apache.commons.io.IOUtils.toByteArray(IOUtils.java:635)
    at org.apache.commons.io.IOUtils.toByteArray(IOUtils.java:617)
    at com.renren.intl.soundsns.simsimi.speech.ttsclient.impl.GoogleTTSClient.main(GoogleTTSClient.java:70)

但是当我使用httpclient时,结果还可以。

String resultURL = String.format(GOOGLE_RECOGNIZER_URL, URLEncoder.encode(text, "UTF-8"), "en-US");

HttpClient client = new HttpClient();

GetMethod g = new GetMethod(resultURL);

client.executeMethod(g);

byte[] resultByte = g.getResponseBody();

这是怎么发生的?

提前致谢 :)

maven依赖:

<dependency>
        <groupId>commons-io</groupId>
        <artifactId>commons-io</artifactId>
        <version>2.4</version>
</dependency>
<dependency>
        <groupId>commons-httpclient</groupId>
        <artifactId>commons-httpclient</artifactId>
        <version>3.1</version>
</dependency>
4

1 回答 1

6

乔恩斯基特是对的!

对我来说,如果 java.net.URL JVM 传递下一个标头:

User-Agent: Java/1.7.0_10
Host: translate.google.cn
Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2
Connection: keep-alive

在 Apache HttpClient 的情况下:

User-Agent: Jakarta Commons-HttpClient/3.1
Host: translate.google.cn

如果您更改,java.net.URL 的用户代理:

System.setProperty("http.agent", "Jakarta Commons-HttpClient/3.1");

请求成功,没有 HTTP 403。

如果您的用户代理以: 开头,看起来您会收到 403 错误Java。任何具有模式的用户代理都会Java.*引发 403 错误。但是,如果您使用这种模式,.+Java.*一切都可以。

于 2013-02-21T07:07:13.617 回答