Is there any way to fire an event if HttpURLConnection has timeout before complete?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
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, http://stackoverflow.com/questions/1247390/java-native-process-timeout/1249984#1249984 |
|||||||
|