开发者

Connection timeout in java?

开发者 https://www.devze.com 2023-01-02 03:45 出处:网络
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 th

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

0

精彩评论

暂无评论...
验证码 换一张
取 消