使用NPOI读取Excel报错ICSharpCode.SharpZipLib.Zip.ZipException:Wrong Local header signature
写了一个小程序利用NPOI来读取Excel,弹出这样的报错:
ICSharpCode.SharpZipLib.Zip.ZipException:Wrong Local header signature
原因在于读取Excel的时候若是读取的文件为txt或者其他拓展名时,都会报这样不知所措的异常;
所以只需要在读取时先检查一下文件名的拓展名,把非.xls和.xlsx的文件过滤就可以了。