获取没有非标准端口的原始URL(C#)
在C#中,可以使用Uri
类来获取URL的相关信息,包括非标准端口。以下是一个示例代码,用于获取没有非标准端口的原始URL:
using System;
class Program
{
static void Main()
{
string url = "http://www.example.com:8080/path/to/page.html";
Uri uri = new Uri(url);
// 获取没有非标准端口的原始URL
string originalUrl = uri.Scheme + "://" + uri.Host + uri.PathAndQuery;
Console.WriteLine("Original URL: " + originalUrl);
}
}
输出结果:
Original URL: http://www.example.com/path/to/page.html
在这个示例中,我们首先创建了一个Uri
对象,然后使用Scheme
属性获取URL的协议(如http或https),使用Host
属性获取URL的主机名(如www.example.com),使用PathAndQuery
属性获取URL的路径和查询字符串(如/path/to/page.html)。最后,我们将这些部分拼接起来,得到没有非标准端口的原始URL。
注意:这个示例仅适用于没有非标准端口的URL。如果URL中包含非标准端口,则需要进行额外的处理。
领取专属 10元无门槛券
手把手带您无忧上云