is there an API in blackberry that can validate URL ?
i'm using stupid method
startsWith(http://)
and read the Index of the string to make sure it contain ".com/" and other strings to ensure it look like a validate URL.
but i feel like it's a stupid and long way to use.
is there any API that can make it easier ?
I'm looking for away to make it within blackberry APIs not external packages
HttpConnectionwith the givenurl. If noMalformedURLExceptionis thrown orgetResponseCode()of theHttpConnectioninstance returns expected response code, you can say that theurlis okay. – Rupak Nov 20 '12 at 4:33I'm looking for away to make it within blackberry APIs not external packages- I didn't understand that line. I think the url validation algorithm can be implemented in purely BlackBerry API since it will require some string/pattern matching only. – Rupak Nov 20 '12 at 4:35