尝试从ZipArchive C#读取ZipFile时出现System.MissingMethodException
作者:互联网
参见英文答案 > C# .NET Missing Method Exception when opening ZipArchive created with System.IO.Compression 2个
我有一个C#.NET(v4.6.2)WinForms应用程序,我正在访问一个文件,该文件可能是/可能不是使用“System.IO.Compression;”创建的.zip存档.我在项目中有“System.IO.Compression”和System.IO.Compress.FileSystem“引用,在顶部使用”System.IO.Compression;“,它是使用NuGet包安装程序安装的.
以下是尝试以.zip存档打开文件的代码:
try
{
string extractPath = Path.GetTempFileName();
string strGameVersion = "";
string strProjectType = "";
using (ZipArchive archive = ZipFile.OpenRead(OpenFilePath))
{
FileStream fs = new FileStream(extractPath, FileMode.Open, FileAccess.Read);
StreamReader sr = new StreamReader(fs);
foreach (ZipArchiveEntry entry in archive.Entries)
{
if (entry.FullName.Contains("ProjectData.txt"))
{
entry.ExtractToFile(Path.Combine(extractPath, entry.FullName));
strGameVersion = sr.ReadLine();
strProjectType = sr.ReadLine();
}
File.Delete(extractPath);
}
sr.Close();
fs.Close();
archive.Dispose();
}
}
catch(System.IO.FileFormatException flex1)
{
MessageBox.Show(flex1.ToString(), "oops.", MessageBoxButtons.OK, MessageBox.Icon.Error);
}
错误消息是“System.MissingMethodException:Method not found:’System.IO.Compression.ZipArchive System.IO.Compression.ZipFile.OpenRead(System.String)’.”
那么我做错了什么或根本没做什么?
解决方法:
出于某种原因,net46程序集中不存在OpenRead.
快速的解决方法是使用
ZipArchive OpenRead(string filename)
{
return new ZipArchive(File.OpenRead(filename), ZipArchiveMode.Read);
}
在https://stackoverflow.com/a/44598092/75947回答
标签:c,net,winforms,ziparchive 来源: https://codeday.me/bug/20190722/1501308.html