在C#中,要对URL进行编码以包含中文字符,可以使用System.Net.WebUtility
类中的UrlEncode
方法。以下是一个示例:
using System;
using System.Net.WebUtility;
class Program
{
static void Main()
{
string url = "https://www.example.com/测试?param=你好";
string encodedUrl = UrlEncode(url);
Console.WriteLine("Encoded URL: " + encodedUrl);
}
static string UrlEncode(string url)
{
return WebUtility.UrlEncode(url);
}
}
在这个示例中,我们首先导入了System.Net.WebUtility
命名空间,然后创建了一个名为UrlEncode
的静态方法,该方法接受一个字符串参数并使用WebUtility.UrlEncode
方法对其进行编码。在Main
方法中,我们定义了一个包含中文字符的URL,并调用UrlEncode
方法对其进行编码,然后将编码后的URL输出到控制台。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: c#怎么在datagridview中加按钮