gpt4 book ai didi

c# - IS String 是有效的 URL OR NOT

转载 作者:行者123 更新时间:2023-11-30 13:57:42 35 4
gpt4 key购买 nike

我正在使用带有此代码的 .net 2010 c# windows 应用程序:检查是否有效 Uri

代码:

static bool IsValidUrl(string urlString)
{
Uri uri;
return Uri.TryCreate(urlString, UriKind.Absolute, out uri)
&& (uri.Scheme == Uri.UriSchemeHttp
|| uri.Scheme == Uri.UriSchemeHttps
|| uri.Scheme == Uri.UriSchemeFtp
|| uri.Scheme == Uri.UriSchemeMailto
);
}

问题: 如果我验证此 http://http://www.Google.com 我得到它的有效性但是当我尝试使用 IE 时不显示任何网站。

有什么方法可以确定 String 是否是有效的 uri? (不使用正则表达式和互联网访问)

最佳答案

它不是一个无效的 URI,甚至不是一个永远不会工作的 URI:你可以在浏览器中使用它,那里有一台名为“http”的本地机器(或者如果你的 Hosts 文件设置为调用一台机器那个)。

问题是完全正确的 URI http://http://www.Google.com,通常以 http://http//的形式使用www.Google.com,因为我们通常不在主机后面包含 :,除非我们包含端口号,否则将无法工作,因为它找不到名为“http”。

现在,即使这有时会奏效,当然也不会一直奏效。所以这是一个与 URI http://www.thisdoesnotexistbecauseijustmdeitup.com/ 不同的问题。

如果您还需要检测这种情况,那么除了连接到 Internet 之外别无他法。

如果您需要检测将在全局范围内工作的 URI,而不是仅在特定 LAN 上工作,那么:

static bool IsGloballyUsableWebMailorFtpUrl(string urlString)
{
Uri uri;
if(!Uri.TryCreate(urlString, UriKind.Absolute, out uri))
return false;
if(uri.Scheme != Uri.UriSchemeHttp
&& uri.Scheme != Uri.UriSchemeHttps
&& uri.Scheme != Uri.UriSchemeFtp
&& uri.Scheme != Uri.UriSchemeMailto)
return false;
string host = uri.Host;
IPAddress ip;
if(!IPAddress.TryParse(host, out ip))//if we don't have an IP address in the host part.
return host.Contains('.') && !host.EndsWith(".local", StringComparison.OrdinalIgnoreCase); // Does the domain have at least one period
// And not the "local" binding used on many
// Private networks
var octets = ip.GetAddressBytes();
if(octets.Length == 4)
switch(octets[0])//We've an IPv4 IP address, check it's not reserved.
{
case 0: case 10: case 127:
return false;
case 128: case 191:
return octets[1] != 0;
case 169:
return octets[1] != 254;
case 172:
return octets[1] < 16 || octets[1] > 31;
case 192:
return octets[1] != 168 && (octets[1] != 0 || octets[2] != 0);
case 223:
return octets[1] != 255 && octets[2] != 255;
default:
return true;
}
else
{ //We've an IPv6 IP address, check it's not reserved.
if(IPAddress.HostToNetworkOrder(1) != 1)
octets = octets.Reverse().ToArray();
var ipInt = new BigInteger(octets);
//Not the neatest approach, but serves
if(ipInt < 0)
return true;
if(ipInt < 2)
return false;
if(ipInt < 281470681743360)
return true;
if(ipInt < 281474976710656)
return false;
if(ipInt < BigInteger.Parse("524413980667603649783483181312245760"))
return true;
if(ipInt < BigInteger.Parse("524413980667603649783483185607213056"))
return false;
if(ipInt < BigInteger.Parse("42540488161975842760550356425300246528"))
return true;
if(ipInt < BigInteger.Parse("42540488241204005274814694018844196864"))
return false;
if(ipInt < BigInteger.Parse("42540489429626442988779757922003451904"))
return true;
if(ipInt < BigInteger.Parse("42540490697277043217009159418706657280"))
return false;
if(ipInt < BigInteger.Parse("42540766411282592856903984951653826560"))
return true;
if(ipInt < BigInteger.Parse("42540766490510755371168322545197776896"))
return false;
if(ipInt < BigInteger.Parse("42545680458834377588178886921629466624"))
return true;
if(ipInt < BigInteger.Parse("42550872755692912415807417417958686720"))
return false;
if(ipInt < BigInteger.Parse("334965454937798799971759379190646833152"))
return true;
if(ipInt < BigInteger.Parse("337623910929368631717566993311207522304"))
return false;
if(ipInt < BigInteger.Parse("338288524927261089654018896841347694592"))
return true;
if(ipInt < BigInteger.Parse("338620831926207318622244848606417780736"))
return false;
if(ipInt < BigInteger.Parse("338953138925153547590470800371487866880"))
return true;
if(ipInt < BigInteger.Parse("340282366920938463463374607431768211456"))
return false;
return true;
}
}

编辑:值得考虑您是否应该进行此检查,如果它是针对最终将连接到有问题的 URI 的应用程序,您只会通过拒绝连接到他们 lan 上的机器来惹恼用户。

关于c# - IS String 是有效的 URL OR NOT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19997266/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com