使用Android Volley进行JsonRequest抛出无法每2次请求从HttpUrlConnection检索响应代码

时间:2015-10-14 10:47:41

标签: android android-volley httpurlconnection

我一直在使用Volley,但今天我面临一个非常奇怪的问题。 我正在成功发布Post JsonRequest,但是如果我再次尝试对同一服务的请求就会失败,如果我再次尝试它会成功等等。

如果请求成功并且我重新启动应用程序,则下一个请求仍然会成功,然后失败,成功等等。

StringRequest也是如此。

在HurlStack课程中,如果出现以下情况,我会发生这种情况:

if (responseCode == -1) {            
// -1 is returned by getResponseCode() if the response code could not be retrieved.            
// Signal to the caller that something was wrong with the connection.

 throw new IOException("Could not retrieve response code from HttpUrlConnection.");

 }

但我知道即使在这种情况下,请求也已正确发布到服务器(我检查了日志)。

0 个答案:

没有答案