How to check if URL is valid in Android

后端 未结 12 1667
轻奢々
轻奢々 2020-11-27 02:31

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 vali

12条回答
  •  醉话见心
    2020-11-27 03:33

    URLUtil.isValidUrl(url);
    

    If this doesn't work you can use:

    Patterns.WEB_URL.matcher(url).matches();
    

提交回复
热议问题