码迷,mamicode.com
首页 > Web开发 > 详细

.NET Core默认不支持GB2312,使用Encoding.GetEncoding(“GB2312”)的时候会抛出异常。

时间:2018-03-18 01:24:53      阅读:3390      评论:0      收藏:0      [点我收藏+]

标签:core   config   ext   AC   异常   post   gis   解决   get   

.NET Core默认不支持GB2312,使用Encoding.GetEncoding(“GB2312”)的时候会抛出异常。

 

解决方案是手动安装System.Text.Encoding.CodePages包(Install-Package System.Text.Encoding.CodePages),

然后在Starup.cs的Configure方法中加入Encoding.RegisterProvider(CodePagesEncodingProvider.Instance),接着就可以正常使用Encoding.GetEncoding(“GB2312”)了。

.NET Core默认不支持GB2312,使用Encoding.GetEncoding(“GB2312”)的时候会抛出异常。

标签:core   config   ext   AC   异常   post   gis   解决   get   

原文地址:https://www.cnblogs.com/shaobin86/p/8593933.html

(0)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!