Заміна WebUtility.HtmlDecode у .NET Core


91

Мені потрібно декодувати символи HTML у .NET Core (MVC6). Схоже, .NET Core не має функції WebUtility.HtmlDecode, яку всі раніше використовували для цієї мети. Чи існує заміна в .NET Core?



2
@duDE, він запитує .NET Core, а не .NET 4.

Погляньте на мою відповідь. це заміна webutility.htmldecode у ядрі .net як httputility.HtmlDecode.

Відповіді:


115

Це в класі System.Net.WebUtility (оскільки .NET Standard 1.0):

//
// Summary:
//     Provides methods for encoding and decoding URLs when processing Web requests.
public static class WebUtility
{
    public static string HtmlDecode(string value);
    public static string HtmlEncode(string value);
    public static string UrlDecode(string encodedValue);
    public static byte[] UrlDecodeToBytes(byte[] encodedValue, int offset, int count);
    public static string UrlEncode(string value);
    public static byte[] UrlEncodeToBytes(byte[] value, int offset, int count);
}


8
Для .NET Core 1.1 використовуйте nuget.org/packages/Microsoft.AspNetCore.WebUtilities
wolfyuk

4
Для .NET Core 2.1 див. Відповідь Gerardo нижче, не потрібно встановлювати інший nuget-пакет.
Влад Ілієску

33

Це в Net Core 2.0

using System.Text.Encodings.Web;

і назвіть це:

$"Please confirm your account by <a href='{HtmlEncoder.Default.Encode(link)}'>clicking here</a>.");

ОНОВЛЕННЯ : Також у .Net Core 2.1:

using System.Web;

HttpUtility.UrlEncode(code)
HttpUtility.UrlDecode(code)

Існують також методи HttpUtility.HtmlEncode та HttpUtility.HtmlDecode.
xhafan


3

Вам потрібно додати посилання System.Net.WebUtility.

  • Він уже включений у .Net Core 2 ( Microsoft.AspNetCore.All)

  • Або ви можете встановити з NuGet - попередня версія для .Net Core 1.

Так, наприклад, ваш код буде виглядати так, як показано нижче

public static string HtmlDecode(this string value)
{
     value = System.Net.WebUtility.HtmlDecode(value);
     return value;
}

3
Або просто зателефонуйте WebUtility.HtmlDecode, немає причини обгортати це методом розширення ...
Джеймі Ріс

3
namespace System.Web
{
    //
    // Summary:
    //     Provides methods for encoding and decoding URLs when processing Web requests.
    //     This class cannot be inherited.
    public sealed class HttpUtility
    {
        public HttpUtility();
        public static string HtmlAttributeEncode(string s);
        public static void HtmlAttributeEncode(string s, TextWriter output); 
        public static string HtmlDecode(string s);
        public static void HtmlDecode(string s, TextWriter output);
        public static string HtmlEncode(string s);
        public static string HtmlEncode(object value);
        public static void HtmlEncode(string s, TextWriter output);
        public static string JavaScriptStringEncode(string value);
        public static string JavaScriptStringEncode(string value, bool addDoubleQuotes);
        public static NameValueCollection ParseQueryString(string query);
        public static NameValueCollection ParseQueryString(string query, Encoding encoding);
        public static string UrlDecode(string str, Encoding e);
        public static string UrlDecode(byte[] bytes, int offset, int count, Encoding e);
        public static string UrlDecode(string str);
        public static string UrlDecode(byte[] bytes, Encoding e);
        public static byte[] UrlDecodeToBytes(byte[] bytes, int offset, int count);
        public static byte[] UrlDecodeToBytes(string str, Encoding e);
        public static byte[] UrlDecodeToBytes(byte[] bytes);
        public static byte[] UrlDecodeToBytes(string str);
        public static string UrlEncode(string str);
        public static string UrlEncode(string str, Encoding e);
        public static string UrlEncode(byte[] bytes);
        public static string UrlEncode(byte[] bytes, int offset, int count);
        public static byte[] UrlEncodeToBytes(string str);
        public static byte[] UrlEncodeToBytes(byte[] bytes);
        public static byte[] UrlEncodeToBytes(string str, Encoding e);
        public static byte[] UrlEncodeToBytes(byte[] bytes, int offset, int count);
        [Obsolete("This method produces non-standards-compliant output and has interoperability issues. The preferred alternative is UrlEncode(String).")]
        public static string UrlEncodeUnicode(string str);
        [Obsolete("This method produces non-standards-compliant output and has interoperability issues. The preferred alternative is UrlEncodeToBytes(String).")]
        public static byte[] UrlEncodeUnicodeToBytes(string str);
        public static string UrlPathEncode(string str);
    }
}

Ви можете використовувати HttpUtility клас in .net coreдля декодування або кодування.

сподіваюся, це спрацює.


Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.