Is there a good way to avoid the "host is not resolved" error that crashes an app? Some sort of a way to try connecting to a host ( like a URL ) and see if it's even valid?

link|improve this question

0% accept rate
how are you connecting to the host? – steelbytes Feb 5 '11 at 4:21
feedback

1 Answer

Wrap the operation in a try/catch. There are many ways that a URL can be well-formed but not retrievable. In addition, tests like seeing if the hostname exists doesn't guarantee anything because the host might become unreachable just after the check. Basically, no amount of pre-checking can guarantee that the retrieval won't fail and throw an exception, so you better plan to handle the exceptions.

link|improve this answer
I don't mind handling the exception but how do I prevent the app from crashing due to that very exception? – user450407 Feb 5 '11 at 4:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.