c#

c# urlencode在哪进行解码操作

小樊
149
2024-12-04 07:39:49
栏目: 编程语言

在C#中,要进行URL解码操作,可以使用System.Net.WebUtility类中的UrlDecode方法。以下是一个简单的示例:

using System;
using System.Net.WebUtility;

class Program
{
    static void Main()
    {
        string encodedUrl = "https%3A%2F%2Fwww.example.com%2Fsearch%3Fq%3Dhello%2Bworld";
        string decodedUrl = UrlDecode(encodedUrl);
        Console.WriteLine("Encoded URL: " + encodedUrl);
        Console.WriteLine("Decoded URL: " + decodedUrl);
    }

    static string UrlDecode(string encodedUrl)
    {
        return WebUtility.UrlDecode(encodedUrl);
    }
}

在这个示例中,我们首先定义了一个编码后的URL字符串encodedUrl,然后使用UrlDecode方法对其进行解码,并将结果存储在decodedUrl变量中。最后,我们将编码和解码后的URL打印到控制台。

0
看了该问题的人还看了