编程语言
首页 > 编程语言> > c# – SharpZipLib:1不是受支持的代码页

c# – SharpZipLib:1不是受支持的代码页

作者:互联网

我使用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;

标签:c,net,zipfile,sharpziplib
来源: https://codeday.me/bug/20190522/1153554.html