How to check that a uri string is valid

后端 未结 5 1700
轻奢々
轻奢々 2020-12-01 08:32

How do you check that a uri string is valid (that you can feed it to the Uri constructor)?

So far I only have the following but for obvious reasons I\'d prefer a les

相关标签:
5条回答
  • 2020-12-01 09:11

    A well-formed URI implies conformance with certain RFCs. The local path in your example is not conformant with these. Read more in the IsWellFormedUriString documentation.

    A false result from that method does not imply that the Uri class will not be able to parse the input. While the URI input might not be RFC conformant, it still can be a valid URI.

    Update: And to answer your question - as the Uri documentation shows, there is a static method called TryCreate that will attempt exactly what you want and return true or false (and the actual Uri instance if true).

    0 讨论(0)
  • 2020-12-01 09:13

    Since the accepted answer doesn't provide an explicit example, here is some code to validate URIs in C#:

    Uri outUri;
    
    if (Uri.TryCreate("ThisIsAnInvalidAbsoluteURI", UriKind.Absolute, out outUri)
       && (outUri.Scheme == Uri.UriSchemeHttp || outUri.Scheme == Uri.UriSchemeHttps))
    {
        //Do something with your validated Absolute URI...
    }
    
    0 讨论(0)
  • 2020-12-01 09:14

    In my case I just wanted to test the uri, I don't want to slow down the application testing the uri.

    Boolean IsValidUri(String uri){
      return Uri.IsWellFormedUriString(uri, UriKind.Absolute);
    }
    
    0 讨论(0)
  • 2020-12-01 09:16

    Assuming we only want to support absolute URI and HTTP requests, here is a function that does what you want:

    public static bool IsValidURI(string uri)
    {
        if (!Uri.IsWellFormedUriString(uri, UriKind.Absolute))
            return false;
        Uri tmp;
        if (!Uri.TryCreate(uri, UriKind.Absolute, out tmp))
            return false;
        return tmp.Scheme == Uri.UriSchemeHttp || tmp.Scheme == Uri.UriSchemeHttps;
    }
    
    0 讨论(0)
  • 2020-12-01 09:27

    In your case the uri argument is an absolute path which refers to a file location, so as per the doc of the method it returns false. Refer to this

    0 讨论(0)
提交回复
热议问题