In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/03 Report--
This article mainly introduces "how to solve the problem of garbled code when asp.net core outputs Chinese". In daily operation, I believe many people have doubts about how to solve the problem of garbled code when asp.net core outputs Chinese. The editor consulted all kinds of data and sorted out simple and easy-to-use methods of operation. I hope it will be helpful for you to answer the problem of "how to solve the problem of garbled code when asp.net core outputs Chinese". Next, please follow the editor to study!
Problem recurrence
New console and site
Public class Program {public static void Main (string [] args) {Console.WriteLine ("Hello, welcome to Beijing"); Console.Read ();}}
Site
Public class Startup {/ / This method gets called by the runtime. Use this method to add services to the container. / / For more information on how to configure your application, visit http://go.microsoft.com/fwlink/?LinkID=398940 public void ConfigureServices (IServiceCollection services) {} / / This method gets called by the runtime. Use this method to configure the HTTP request pipeline. Public void Configure (IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory) {loggerFactory.AddConsole (); if (env.IsDevelopment ()) {app.UseDeveloperExceptionPage ();} app.Run (async (context) = > {await context.Response.WriteAsync ("Hello, Beijing Welcome");});}}
So what if we get the "GB2312" code and encode it?
Public static void Main (string [] args) {Console.WriteLine ("Hello, welcome to Beijing"); try {Console.WriteLine (Encoding.GetEncoding ("GB2312"));} catch (Exception ex) {Console.WriteLine (ex.Message);} Console.Read ();}}
'GB2312' is not a supported encoding name. For information on defining a custom encoding, see the documentation for the Encoding.RegisterProvider method.
Parameter name: name
The general meaning above is that Encoding does not support GB2312 encoding, and you need to use the Encoding.RegisterProvider method to register Provider.
Try {Encoding.RegisterProvider (CodePagesEncodingProvider.Instance); Console.WriteLine (Encoding.GetEncoding ("GB2312"));} catch (Exception ex) {Console.WriteLine (ex.Message);} Console.Read ()
CodePagesEncodingProvider is in the package System.Text.Encoding.CodePages
"System.Text.Encoding.CodePages/4.0.1": {"type": "package", "dependencies": {"Microsoft.NETCore.Platforms": "1.0.1", "System.Collections": "4.0.11", "System.Globalization": "4.0.11", "System.IO": "4.1.0", "System.Reflection": "4.1.0" "System.Resources.ResourceManager": "4.0.1", "System.Runtime": "4.1.0", "System.Runtime.Extensions": "4.1.0", "System.Runtime.Handles": "4.0.1", "System.Runtime.InteropServices": "4.1.0", "System.Text.Encoding": "4.0.11", "System.Threading": "4.0.11"} "compile": {"ref/netstandard1.3/System.Text.Encoding.CodePages.dll": {}}, "runtimeTargets": {"runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {"assetType": "runtime", "rid": "unix"}, "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {"assetType": "runtime" "rid": "win"}
All right, let's modify the code, register first, and then output Chinese.
Try {Encoding.RegisterProvider (CodePagesEncodingProvider.Instance); Console.WriteLine (Encoding.GetEncoding ("GB2312")); Console.WriteLine ("Hello, welcome to Beijing");} catch (Exception ex) {Console.WriteLine (ex.Message);}
Summary
So when you output on the page, or when you output Chinese on the console, you should pay attention to registering Provider.
At this point, the study on "how to solve the problem of garbled codes in asp.net core when outputting Chinese" is over. I hope to be able to solve your doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.