머리말
.NET 웹 개발자로서 가장 슬픈 시간은 프로젝트 개발 및 배포 중에 Windows Server에서 열악한 솔루션에 직면했을 때입니다. 또한 Nginx의 아티팩트이기도 하지만 Win의 Nginx는 그렇습니다. Linux에서는 "왜 Windows와 함께 제공되는 NLB를 사용하지 않습니까?"라고 말할 수 있습니다. 그렇다면 이것은 나 같은 작은 새의 무리 사고 방식입니다. Stack Overflow 2016의 최신 아키텍처도 동일한 로드 및 캐시 기술을 Linux에서 이미 채택하시겠습니까? 다른 방법이 없을 때 적합한 해결책을 찾는 것이 좋습니다. 물론, 방법이 있을 때 가장 좋은 해결책을 선택해야 합니다.
다행히 .ASP.NET Core가 등장했습니다. 오픈소스 추세에 맞춰 그동안 비판받았던 Win Server를 없애고 ASP의 크로스 플랫폼 버전으로 우리 앞에 나타났습니다. 그물. 벤치마크의 지루한 성능 비교나 향후 JAVA 및 PHP 웹 애플리케이션과 경쟁할 수 있는지 여부에 관계없이 적어도 우리 .NET 플랫폼 개발자에게는 하나 이상의 개발 방향과 하나 이상의 최첨단 및 성숙한 기술이 있습니다. 기회. 아래에서는 할 말이 많지 않습니다. 이 기사에서는 asp.net 코어에서 중국어를 출력할 때 발생하는 문자 깨짐 문제를 주로 소개합니다.
문제 재현
새 콘솔 및 사이트 만들기
public class Program { public static void Main(string[] args) { Console.WriteLine("您好,北京欢迎你"); Console.Read(); } }
사이트
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("您好,北京欢迎你"); }); } }
그럼 "GB2312" 인코딩을 받은 다음 인코딩하나요?
public static void Main(string[] args) { Console.WriteLine("您好,北京欢迎你"); try { Console.WriteLine(Encoding.GetEncoding("GB2312")); } catch (Exception ex) { Console.WriteLine(ex.Message); } Console.Read(); } }
'GB2312'는 지원되는 인코딩 이름이 아닙니다. 사용자 정의 인코딩 정의에 대한 자세한 내용은 Encoding.RegisterProvider 메서드에 대한 설명서를 참조하세요.
매개변수 이름: name
위 내용은 Encoding이 GB2312 인코딩을 지원하지 않는다는 의미일 수 있으며, Provider를 등록하려면 Encoding.RegisterProvider 메서드를 사용해야 합니다.
try { Encoding.RegisterProvider(CodePagesEncodingProvider.Instance); Console.WriteLine(Encoding.GetEncoding("GB2312")); } catch (Exception ex) { Console.WriteLine(ex.Message); } Console.Read();
CodePagesEncodingProvider는 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" } } },
자, 코드를 수정해 보겠습니다. , 먼저 등록한 후 중국어
try { Encoding.RegisterProvider(CodePagesEncodingProvider.Instance); Console.WriteLine(Encoding.GetEncoding("GB2312")); Console.WriteLine("您好,北京欢迎你"); } catch (Exception ex) { Console.WriteLine(ex.Message); }
요약
출력하므로 페이지에 출력하거나 콘솔에 중국어를 출력할 때 Provider 등록에 주의하세요. 이상이 이 글의 전체 내용입니다. 이 글의 내용이 모든 분들의 공부나 업무에 조금이나마 도움이 되었으면 좋겠습니다. 궁금한 점이 있으면 메시지를 남겨주세요.
중국어 출력 시 asp.net 코어의 문자 깨짐 문제 해결에 대한 더 많은 관련 기사를 보려면 PHP 중국어 웹사이트를 주목하세요!