温馨提示×

c# urlencode怎样编码中文字符

c#
小樊
86
2024-12-04 07:37:49
栏目: 编程语言

在C#中,要对URL进行编码以支持中文字符,可以使用System.Net.WebUtility类中的UrlEncode方法。下面是一个简单的示例:

using System;
using System.Net.WebUtility;

class Program
{
    static void Main()
    {
        string url = "https://www.example.com/测试页面?param1=中文参数1&param2=中文参数2";
        string encodedUrl = UrlEncode(url);
        Console.WriteLine("原始URL: " + url);
        Console.WriteLine("编码后的URL: " + encodedUrl);
    }

    static string UrlEncode(string url)
    {
        return WebUtility.UrlEncode(url);
    }
}

在这个示例中,我们首先定义了一个包含中文字符的URL。然后,我们使用UrlEncode方法对其进行编码,并将结果输出到控制台。

0