vote up 3 vote down star
3

In one of the previous posts it was suggested to use System.Uri to check if the URL is valid. How does one do that?

flag

73% accept rate

5 Answers

vote up 8 vote down check

To check if an url is valid instead of using exceptions you can use the TryCreate method:

Uri result;
if (Uri.TryCreate("http://www.google.com", UriKind.RelativeOrAbsolute, out result)) 
{
    // the url is valid
}
link|flag
thats more like it. thanks! – dev.e.loper Mar 31 at 17:51
Now according to Uri.TryCreate url such as hht://www.gogole.com is valid. Even though the htt: is invalid scheme. Why is htt: okay? – dev.e.loper Mar 31 at 18:19
htt: is perfectly valid scheme. A custom protocol could define this scheme. – Darin Dimitrov Apr 1 at 7:22
i tried this with an invalid Uri like this /folder/{ht.com.m\\/sx.r:erp://°? and returns true but the out parameter throws exceptions in every property, i guess the only way to truly test if the string represent an Uri is if the Uri is absolute – Juan Zamudio May 13 at 5:48
I think you should use "UriKind.Absolute". Also one need to consider that there is a difference between an "Uri" and "Url". I think you looking for the latter and this is not a great way to do it. – dr. evil May 13 at 17:35
show 1 more comment
vote up 3 vote down

Can use the static IsWellFormedUriString method:

bool isValid = Uri.IsWellFormedUriString(url, UriKind.Absolute);

http://msdn.microsoft.com/en-us/library/system.uri.iswellformeduristring.aspx

link|flag
vote up 3 vote down

Using Uri.TryCreate can have some problems with relative Uris, with string like this "/folder/{ht.com.m\/sx.r:erp://" TryCreate returns true, so i create this extension method using IsWellFormedUriString and TyrCreate, I'm not sure TryCreate is necessary, with my little tests i get the same results with or without TryCreate

public static bool IsUri(this string source) {
  if(!string.IsNullOrEmpty(source) && Uri.IsWellFormedUriString(source, UriKind.RelativeOrAbsolute)){
    Uri tempValue;
    return (Uri.TryCreate(source, UriKind.RelativeOrAbsolute, out tempValue));
  }
  return (false);
}

Example

address= "http://www.c$nbv.gob.mx"
if(address.IsUri()){
  //returns false
}
address= "http://www.cnbv.gob.mx"
if(address.IsUri()){
  //returns true
}
address= "http://www.cnbv.gob.mx:80"
if(address.IsUri()){
  //returns true
}
address= "/directory/path"
if(address.IsUri()){
  //returns true
}
address= "~re#l|ativ[ainco#recta\car:.\peta"
if(address.IsUri()){
  //returns false
}
link|flag
vote up 0 vote down

If you are checking to see if the structure of the URL is valid, then the previous answer is just fine.

However, if you want to check that the resource actually exists, you are going to have to use the classes that derive from WebRequest/WebResponse. For HTTP and FTP resources, the HttpWebRequest/FtpWebRequest and HttpWebResponse/FtpWebResponse classes will work fine (as will WebClient), but if you have other schemes that you have to support, you will have to find specific providers for that scheme.

link|flag
vote up -1 vote down
try
{
    System.Uri test = new System.Uri(stringToTest);
}
catch (FormatException ex)
{
    return false;
}
return true;
link|flag
really? the only way to check is to see if it throws an exception? i thought throwing exception for purposes of performing an assertion is a bad programming practice. – dev.e.loper Mar 31 at 17:38
I didn't throw the exception - System.Uri constructor did. – John Saunders Mar 31 at 18:02
it doesn't matter who threw the exception, the idea is the same. idea of using try/catch block instead of if/else statement. ideally you don't want anything to throw an exception because it is an expensive process. hence there are functions like Url.TryCreate which don't throw exception. – dev.e.loper Mar 31 at 18:17
exceptions are no that expensive, and if you care a lot about performance read blogs.msdn.com/ricom , the problem with the Uri class is that only works well with absolute Uris, TryCreate returns true with "/folder/{ht.com.m\\/sx.r:erp://", and also new Uri("/folder/{ht.com.m\\/sx.r:erp://") don't throw any exception – Juan Zamudio May 13 at 5:53
It's not only exception is wrong or right, this is more like abusing exception. There is a lovely method called "TryCreate" just for this. – dr. evil May 13 at 17:38
show 2 more comments

Your Answer

Get an OpenID
or

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