Using Java, how can I test that a URL is contactable, and returns a valid response?
http://stackoverflow.com/about
|
Using Java, how can I test that a URL is contactable, and returns a valid response?
|
|||
|
|
|
The solution as a unit test:
|
|||||||
|
|
Since java 5 if i recall, the InetAdress class contains a method called isReachable(); so you can use it to make a ping implementation in java. You can also specify a timeout for this method. This is just another alternative to the unit test method posted above, which is probably more efficient. |
|||||||
|
Output: url is valid url is invalid source : http://www.mkyong.com/java/how-to-validate-url-in-java/ |
||||
|
|