0

在我更新到最新的谷歌客户端 API 后,以下代码抛出错误

 catch (IOException e) {
                if (e instanceof HttpResponseException) {
                    HttpResponse response = ((HttpResponseException) e)
                            .getResponse();//The error is here
                    int statusCode = response.getStatusCode();

在 getResponse 它抛出一个错误The method getResponse() is undefined for the type HttpResponseException ,我尝试回滚到以前版本的 api 但徒劳无功。

4

1 回答 1

0

这个方法在 1.10 版Google HTTP Client Library中被移除了。

异常现在有自己的getStatusCode()方法。

于 2012-09-19T19:37:50.527 回答