Lỗi:Không thể tải tập tin hoặc lắp ráp ICSharpCode.SharpZipLib ... Khi sử dụng NuGet gói ExcelDataReader
Could not load file or assembly 'ICSharpCode.SharpZipLib, Version=0.85.5.452, Culture=neutral, PublicKeyToken=1b03e6acf1164f73' or one of its dependencies. The system cannot find the file specified.`
Stack:
[FileNotFoundException: Could not load file or assembly 'ICSharpCode.SharpZipLib, Version=0.85.5.452, Culture=neutral, PublicKeyToken=1b03e6acf1164f73' or one of its dependencies. The system cannot find the file specified.]
Excel.Core.ZipWorker.Extract(Stream fileStream) +0
Excel.ExcelOpenXmlReader.Initialize(Stream fileStream) +78
[Asp.Net MVC3 C#]
Sử dụng Gói NuDet ExcelDataReader Tôi đã cố gắng mở một tệp .xlsx đã lưu trên hệ thống tệp. Dưới đây là các mã được sử dụng:
string filePath = HttpContext.Server.MapPath("~/blank3.xlsx");
FileStream stream = System.IO.File.Open(filePath, FileMode.Open, FileAccess.Read);
IExcelDataReader excelReader = ExcelReaderFactory.CreateOpenXmlReader(stream);
đây là trang web cho gói NuGet: http://exceldatareader.codeplex.com/
gì cho? Điều này sẽ làm việc mà không có một xô.
Bạn có thể rõ ràng hơn một chút về quy trình của mình không? –