Is 开发者_如何学Pythonthere any way to fire an event if HttpURLConnection
has timeout before complete?
There is no built-in timeout for this. What I do is to use a different thread and interrupt the thread after the timeout.
It's easier to use FutureTask for this. See my answer to this question,
java native Process timeout
URLConnection.setConnectTimeout()
URLConnection.setReadTimeout()
@since 1.5
精彩评论