Android 和 HttpGet 超时响应机会
我有一个 HttpGet
实例,并且在 HttpConnectionParams
中设置了超时。我的连接和请求可能不会超时,但它们可能会超时,我希望有机会对此做出回应以及如何通知用户此事件。
我如何/在哪里可以做到这一点?
I have an instance of HttpGet
, and I've set timeouts in HttpConnectionParams
. My connection and request probably won't time out but they might and I'd like the chance to respond to this and some how inform the user of this event.
How/Where can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
连接超时会导致
ConnectTimeoutException
,捕获该异常并显示一条消息。如果您不需要执行任何特定操作,捕获 IOException 可能就足够了。A connection timeout would cause an
ConnectTimeoutException
, catch that and display a message. If you don't need to do anything specific, catchingIOException
might be good enough.