zoukankan      html  css  js  c++  java
  • 处理sevenzipsharp 检查密码函数的Bug

    using (SevenZipExtractor extr = new SevenZipExtractor(tbPackagePath.Text, "www.pc6.com"))
                {
    
                    if (extr.Check())
                    {
                        MessageBox.Show("密码正确");
                    }
                    else
                    {
                        MessageBox.Show("密码不正确");
                    }
                }

    这一段是检查压缩包密码是否正确,发现360压缩的zip,不管正不正确,都返回true,

    修改以下源码(ArchiveExtractCallback.cs),避免此错误

    public void SetOperationResult(OperationResult operationResult)
            {
                if (operationResult != OperationResult.Ok && ReportErrors)
                {
                    switch (operationResult)
                    {
                        case OperationResult.CrcError:
                            AddException(new ExtractionFailedException("File is corrupted. Crc check has failed."));
                            break;
                        case OperationResult.DataError:
                            AddException(new ExtractionFailedException("File is corrupted. Data error has occured."));
                            break;
                        case OperationResult.UnsupportedMethod:
                            AddException(new ExtractionFailedException("Unsupported method error has occured."));
                            break;
                        default:
                            AddException(new ExtractionFailedException("An unknown error."));
                            break;
                    }
                }
                else
                {
                    if (_fileStream != null && !_fileIndex.HasValue)
                    {
                        try
                        {
                            _fileStream.BytesWritten -= IntEventArgsHandler;
                            _fileStream.Dispose();
                        }
                        catch (ObjectDisposedException) { }
                        _fileStream = null;
                        GC.Collect();
                        GC.WaitForPendingFinalizers();
                    }
                    var iea = new FileInfoEventArgs(
                        _extractor.ArchiveFileData[_currentIndex], PercentDoneEventArgs.ProducePercentDone(_doneRate));                
                    OnFileExtractionFinished(iea);
                    if (iea.Cancel)
                    {
                        Canceled = true;
                    }
                }
            }
    

      

  • 相关阅读:
    设计模式之桥接模式
    设计模式之适配器模式
    设计模式之建造者模式
    设计模式之原型设计
    Exception in thread "main" java.lang.UnsupportedOperationException
    设计模式7大原则
    设计模式之单例模式
    初识python
    消息传递:发布订阅模式详解
    哨兵机制(Redis Sentinel)
  • 原文地址:https://www.cnblogs.com/-Object/p/5375530.html
Copyright © 2011-2022 走看看