主页 > 知识库 > C#调用动态unlha32.dll解压Lha后缀的打包文件分享

C#调用动态unlha32.dll解压Lha后缀的打包文件分享

热门标签:外呼系统费用一年 十堰正规电销机器人系统 世纪佳缘地图标注怎么去掉 巫师3为什么地图标注的财宝没有 手机地图标注如何删除 办理400电话证件 怎么给超市做地图标注入驻店 外呼系统代理品牌 宁波自动外呼系统代理

复制代码 代码如下:

public class LhaUtity
    {
        ///取得DLL的版本
        [DllImport("unlha32")]
        private static extern UInt16 UnlhaGetVersion();

        /// summary>
        /// '取得DLL的执行情况
        /// /summary>
        /// returns>是否成功/returns>
        [DllImport("unlha32")]
        private static extern  Boolean UnlhaGetRunning();

        /// summary>
        /// '文件检查
        /// /summary>
        /// param name="szFileName">/param>
        /// param name="iMode">/param>
        /// returns>/returns>
        [DllImport("unlha32")]
        private static extern Boolean UnlhaCheckArchive(String szFileName, Int32 iMode);

        /// summary>
        /// 文件解压缩
        /// /summary>
        /// param name="hwnd">/param>
        /// param name="szCmdLine">/param>
        /// param name="szOutput">/param>
        /// param name="dwSize">/param>
        /// returns>/returns>
        [DllImport("unlha32")]
        private static extern int Unlha(int hwnd, string szCmdLine, string szOutput, int dwSize);

        /// summary>
        /// 需要解压的文件
        /// /summary>
        /// param name="archiveFile">解压文件路径/param>
        /// param name="extractDir">解压到路径/param>
        /// param name="isDeleteFile">是否删除/param>
        public static bool UnCompress(string archiveFile, string extractDir,bool  isDeleteFile)
        {
            string extractFullPath = string.Empty;
            string startPath = AppDomain.CurrentDomain.BaseDirectory;

            if (!System.IO.File.Exists(archiveFile))
            {
                //判断需要解压的文件存不存
                throw new Exception(string.Format("需要解压的{0}不存在", archiveFile));
            }

            try
            {
                UInt16 ver = LhaUtity.UnlhaGetVersion();
            }
            catch (Exception ex)
            {
                throw new Exception("没找到Unlha32.dll文件");
            }

            if (UnlhaGetRunning())
            {
                throw new Exception("DLL正在执行");
            }


            if (!UnlhaCheckArchive(archiveFile, 0))
            {
                throw new Exception("文件不能被解压缩");
            }

            //解压的路径
            if (string.IsNullOrEmpty(extractDir))
            {
                extractFullPath =string.Format(@"{0}{1}\", startPath,archiveFile.Substring(archiveFile.LastIndexOf("\\")+1,archiveFile.IndexOf(".lha")-1-archiveFile.LastIndexOf("\\")));
            }
            else
            {
                extractFullPath = extractDir;
            }

            if (!System.IO.Directory.Exists(extractFullPath))
            {
                System.IO.Directory.CreateDirectory(extractFullPath);
            }
              


            int ret = Unlha(0, string.Format("x \"{0}\" \"{1}\"", archiveFile, extractFullPath), null, 0);

            if (ret != 0)
            {


                if (ret == 32800)
                {
                    throw new Exception("文件解压缩取消");
                }
                else
                {
                    throw new Exception("文件解压缩异常结束");

                }

            }
            else
            {
                if (isDeleteFile)
                {
                    System.IO.File.Delete(archiveFile);
                }

                return true;
            }


        }

}


项目中需要到解压这类型的文件,无从下手,上网看资料发现是日本常用的压缩算法之一,

查了很多资料,都没有好的办法解包,

后来找到这个dll可以解包的

但是网上的代码都是VB或者C的

唯有自己写成C#版本的,其实即使C#调用动态链接库

先到网上下载这个dll,然后把这个DLL放到C:\Windows\System32目录下

您可能感兴趣的文章:
  • C#将dll打包到程序中的具体实现
  • C#服务端图片打包下载实现代码解析
  • C#使用InstallerProjects打包桌面应用程序的完整步骤
  • Unity C#打包AssetBundle与场景详解
  • C#利用VS中插件打包并发布winfrom程序
  • c#打包文件解压缩的实例
  • C#打包应用程序,与.NETFramework介绍
  • 将c#编写的程序打包成应用程序的实现步骤分享(安装,卸载) 图文
  • 使用VS2010 C#开发ActiveX控件(下),完整代码打包下载
  • c#项目将dll打包到exe中的步骤

标签:嘉兴 牡丹江 天门 景德镇 通辽 山西 平凉 泰州

巨人网络通讯声明:本文标题《C#调用动态unlha32.dll解压Lha后缀的打包文件分享》,本文关键词  调用,动态,unlha32.dll,解压,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《C#调用动态unlha32.dll解压Lha后缀的打包文件分享》相关的同类信息!
  • 本页收集关于C#调用动态unlha32.dll解压Lha后缀的打包文件分享的相关信息资讯供网民参考!
  • 推荐文章