CodePage 437 not supported
post by:追风剑情 2015-5-25 15:05
错误: CodePage 437 not supported
原因:
ICSharpCode.SharpZipLib.Zip.ZipConstants.DefaultCodePage默认为437(美国/加拿大英语),如果被解压的文件不是437编码将报CodePage 437 not supported错误。
解决方案:
//根据项目中使用的编码,重设ZipConstants.DefaultCodePage的值。例如我的项目使用的是UTF8编码。
ICSharpCode.SharpZipLib.Zip.ZipConstants.DefaultCodePage = System.Text.Encoding.UTF8.CodePage;
评论:
发表评论: