利用ICSharpCode.SharpZipLib.dll解析 出错:“Wrong Local header signature: 0xFF8”

本文涉及的产品
云解析 DNS,旗舰版 1个月
全局流量管理 GTM,标准版 1个月
公共DNS(含HTTPDNS解析),每月1000万次HTTP解析
简介: ## 分析原因利用ICSharpCode.SharpZipLib.dll解析APK时,进入APK的AndroidXml获取时出现报错## 出错代码```csharpusing (ICSharpCode.SharpZipLib.Zip.ZipInputStream zip = new ICSharpCode.SharpZipLib.Zip.ZipInputStream(File.OpenRead(path))) { using (var filestream = new FileStream(path, FileMode.Open, FileAccess.Read)) {

分析原因

利用ICSharpCode.SharpZipLib.dll解析APK时,进入APK的AndroidXml获取时出现报错

出错代码

using (ICSharpCode.SharpZipLib.Zip.ZipInputStream zip = new ICSharpCode.SharpZipLib.Zip.ZipInputStream(File.OpenRead(path))) 
{
   
    using (var filestream = new FileStream(path, FileMode.Open, FileAccess.Read)) 
    {
   
        ICSharpCode.SharpZipLib.Zip.ZipFile zipfile = new ICSharpCode.SharpZipLib.Zip.ZipFile(filestream);
        ICSharpCode.SharpZipLib.Zip.ZipEntry item;
        // 出错部分
        while ((item = zip.GetNextEntry()) != null) 
        {
   
            if (item.Name.ToLower() == "androidmanifest.xml") 
            {
   
                manifestData = new byte[50 * 1024];
                using (Stream strm = zipfile.GetInputStream(item)) 
                {
   
                    strm.Read(manifestData, 0, manifestData.Length);
                }
            }
            if (item.Name.ToLower() == "resources.arsc") 
            {
   
                using (Stream strm = zipfile.GetInputStream(item)) 
                {
   
                    using (BinaryReader s = new BinaryReader(strm)) 
                    {
   
                        resourcesData = s.ReadBytes((int)s.BaseStream.Length);
                    }
                }
            }
        }
    }

解决方法

经过查阅资料,解决方法如下

using (ZipInputStream zip = new ZipInputStream(File.OpenRead(path))) 
{
   
    using (var filestream = new FileStream(path, FileMode.Open, FileAccess.Read)) 
    {
   
        System.Text.Encoding.RegisterProvider(System.Text.CodePagesEncodingProvider.Instance);
        ZipFile zipfile = new ZipFile(filestream);
        // 代码更换部分
        foreach (ZipEntry entry in zipfile) 
        {
   
            if (entry != null) 
            {
   
                if (entry.Name.ToLower() == "androidmanifest.xml") 
                {
   
                    manifestData = new byte[50 * 1024];
                    Stream strm = zipfile.GetInputStream(entry);
                    strm.Read(manifestData, 0, manifestData.Length);
                }
                if (entry.Name.ToLower() == "resources.arsc") 
                {
   
                    Stream strm = zipfile.GetInputStream(entry);
                    using (BinaryReader s = new BinaryReader(strm)) 
                    {
   
                        resourcesData = s.ReadBytes((int)entry.Size);
                    }
                }
            }
        }
    }
}

参考链接

Wrong Local header signature: 0xFF8

以上就是利用ICSharpCode.SharpZipLib.dll解析 出错:“Wrong Local header signature: 0xFF8”的介绍,做此记录,如有帮助,欢迎点赞关注收藏!

目录
相关文章
|
编解码
AAC_LC用LATM封装header信息解析 Audio Specific Config格式分析
通常来说AAC的头信息在编解码过程中是可以获取到的,但今天需要根据音频参数生成相应的AAC头。项目中使用的是AAC_LC,今天先对它的结构进行分析。     项目中使用ffmpeg进行音频编码,音频编码库为FAAC,好吧,直接看代码吧。
2728 0
|
搜索推荐 语音技术 数据安全/隐私保护
RTP协议之Header结构解析
实时传输协议 RTP,RTP 提供带有实时特性的端对端数据传输服务,传输的数据如:交互式的音频和视频。那些服务包括有效载荷类型定义,序列号,时间戳和传输监测控制。应用程序在 UDP 上运行 RTP 来使用它的多路技术和 checksum 服务。
1296 0
|
编解码
【H.264/AVC视频编解码技术详解】十一、H.264的Slice Header解析
《H.264/AVC视频编解码技术详解》视频教程已经在“CSDN学院”上线,视频中详述了H.264的背景、标准协议和实现,并通过一个实战工程的形式对H.
1899 0
|
30天前
|
缓存 Java 程序员
Map - LinkedHashSet&Map源码解析
Map - LinkedHashSet&Map源码解析
66 0
|
30天前
|
算法 Java 容器
Map - HashSet & HashMap 源码解析
Map - HashSet & HashMap 源码解析
51 0
|
30天前
|
存储 Java C++
Collection-PriorityQueue源码解析
Collection-PriorityQueue源码解析
58 0
|
30天前
|
安全 Java 程序员
Collection-Stack&Queue源码解析
Collection-Stack&Queue源码解析
74 0
|
11天前
|
消息中间件 缓存 安全
Future与FutureTask源码解析,接口阻塞问题及解决方案
【11月更文挑战第5天】在Java开发中,多线程编程是提高系统并发性能和资源利用率的重要手段。然而,多线程编程也带来了诸如线程安全、死锁、接口阻塞等一系列复杂问题。本文将深度剖析多线程优化技巧、Future与FutureTask的源码、接口阻塞问题及解决方案,并通过具体业务场景和Java代码示例进行实战演示。
30 3
|
28天前
|
存储
让星星⭐月亮告诉你,HashMap的put方法源码解析及其中两种会触发扩容的场景(足够详尽,有问题欢迎指正~)
`HashMap`的`put`方法通过调用`putVal`实现,主要涉及两个场景下的扩容操作:1. 初始化时,链表数组的初始容量设为16,阈值设为12;2. 当存储的元素个数超过阈值时,链表数组的容量和阈值均翻倍。`putVal`方法处理键值对的插入,包括链表和红黑树的转换,确保高效的数据存取。
51 5
|
30天前
|
Java Spring
Spring底层架构源码解析(三)
Spring底层架构源码解析(三)

推荐镜像

更多
下一篇
无影云桌面