[原]使用SevenZipSharp出现“Can not load 7-zip library or internal COM error! Message: DLL file does not exist.”的解决方案

如果你是从nuget上下载安装的SevenZipSharp库,当你写好相应代码,兴冲冲的启动程序进行测试时,以下画面会让你受到当头一棒:

究其原因,是因为SevenZipSharp只是native 7z库的C# Wrap,所以你要让程序能够正常运行,还需要有7z的运行时库(但诡异的是SevenZipSharp既没有自己附带,也没有写入依赖项)。

可以打开nuget,下载安装7z或7z.Libs,设置7z.dll为始终拷贝。然后再次启动程序。

如果依然出现这个错误,说明SevenZipSharp没有能够自动找到7z.dll,这时我们可以手动设置其路径,如:

if (IntPtr.Size == 4)
{
    SevenZipCompressor.SetLibraryPath(@"7z-x86.dll");
}
else
{
    SevenZipCompressor.SetLibraryPath(@"7z-x64.dll");
}

解压的设置同理。

时间: 2024-11-05 11:54:57

[原]使用SevenZipSharp出现“Can not load 7-zip library or internal COM error! Message: DLL file does not exist.”的解决方案的相关文章

SevenZip.SevenZipLibraryException: Can not load 7-zip library or internal COM error! Message: failed to load library.

SevenZip.SevenZipLibraryException: Can not load 7-zip library or internal COM error! Message: failed to load library.解决方案 问题原因:就是你的系统版本是64位,然后你用了32位的dll(或者反过来) 解决方案:https://github.com/gdoujkzz/7zdll/tree/master/7z 这里面有32位的和64位7zdll.

【转】emulator: ERROR: Could not load OpenGLES emulation library: lib64OpenglRender.so

[转]emulator: ERROR: Could not load OpenGLES emulation library: lib64OpenglRender.so 1 ./emulator64-arm -avd <AVD_name> 2 emulator: ERROR: Could not load OpenGLES emulation library: lib64OpenglRender.so: cannot open shared object file: No such file o

Eclipse运行时提示“Failed to load the JNI shared library /Java/jre6/bin/client/jvm.dll”的一个解决方案

出现这个问题的一个原因是eclipse需要的32位jdk,你的环境变量中配的是64位jdk 于是有人建议,重装个32位的jdk,把环境变量换成32位的jdk,但如果你的其它程序需要64位jdk的话,这肯定不是一个好办法 还有一种方法是在 eclipse根目录下有个eclipse.ini文件,添加个 -vm参数 -vm C:/Java32/jdk1.7.0_45/bin/javaw.exe      //这是我的32位jdk 注意位置 -startup plugins/org.eclipse.eq

ASP.NET Parser Error Message: Could not load type &#39;Web.Global&#39;.

Server Error in '/myapp' Application. Parser Error Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. P

关于怎样解决eclipse打开时出现的Failed to load the JNIshared library亲测有效

之前一直可以正常使用eclipse但是当我装了Oracle后打开后就出现了Failed to load the JNIshared library(下面还出现了一个jvm.dll的文件路径),当时就蒙逼了直接百度结果他是这样解释的  “这个问题一般是eclipse和JDK位数不一样,问他eclipse和JDK分别是多少位的,他也不知道,那么如何判断eclipse和JDK位数不一样了,如何解决这个问题?首先查看两个软件的位数,然后再卸载一个,安装和另外一个位数一样的软件.”然后自己就猜想会不会是O

网站部署后Parser Error Message: Could not load type 的解决方案

asp.net 的Webproject 项目是在64bit机上开发,默认选项发布后,部署到32bit的服务器上,出现Parser Error Message: Could not load type的错误,主要原因是: 解决方案的编译配置默认情况下是Debug状态,将其切换到All Configurations下,并将目标平台选为Any CPU,重新发布,就能成功,具体操作如下: 右键解决方案--属性,如图配置

Can&#39;t load IA 32-bit .dll on a AMD 64-bit platform解决方案

在myeclipse中使用的,tomcat异常: java.lang.UnsatisfiedLinkError: D:\JAVA\ApacheTomcat\bin\tcnative-1.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform at java.lang.ClassLoaderNativeLibrary.load(NativeMethod)atjava.lang.ClassLoader.loadLibrary0(ClassLoa

OpenProj打开不了或者提示”Failed to load Java VM Library”的错误的解决方案

一.双击打开OpenProj.exe没反应的解决方案: 1) 修改OpenProj1.4.0.ini,将Maximum Version=any改为Maximum Version=1.7,保存. 2)这时再双击OpenProj.exe,会弹出选择jre的路径,选择本机安装jre的目录(重要:必须选择32位的jre,且Java版本在1.8以下,下面会说明原因) 二.提示"Failed to load Java VM Library"的错误的解决方案: 1) 打开"开始"

eclipse Failed to load the JNIshared library

eclipse Failed to load the JNIshared library CreateTime--2018年4月22日22:08:35 Author:Marydon 1.情景再现 2.问题解析 eclipse的位数和jdk位数不一致:我这里的eclipse是64位的,而安装的jdk是32位的, 所以在启动eclipse的时候,直接报错. 3.解决方案: 要么将eclipse换成32位的,要么将jdk换成64位的. 相关推荐: java 如何查看jdk版本&位数 原文地址:http