我使用SharpZipLib压缩文件,用户收到此错误:
1 is not a supported code page
我发现here问题出在区域设置中并且解决方案正在进行中
“replace the line of code that fetches the code page from the Thread’s
OEMCodePage and instead hardcode the suitable value.”
但我没有找到任何代码示例来解决这个问题.
解决方法:
在硬编码代码页下面行以避免从系统区域设置获取它:
ICSharpCode.SharpZipLib.Zip.ZipConstants.DefaultCodePage = 437;