前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >利用ICSharpCode.SharpZipLib.dll解析 出错:“Wrong Local header signature: 0xFF8”

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

原创
作者头像
GoodTime
发布2023-10-31 10:09:36
3900
发布2023-10-31 10:09:36
举报
文章被收录于专栏:GoodTime的全栈开发

分析原因

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

出错代码

代码语言:c#
复制
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);
					}
				}
			}
		}
	}

解决方法

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

代码语言:c#
复制
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”的介绍,做此记录,如有帮助,欢迎点赞关注收藏!

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 分析原因
  • 出错代码
  • 解决方法
  • 参考链接
    • 以上就是利用ICSharpCode.SharpZipLib.dll解析 出错:“Wrong Local header signature: 0xFF8”的介绍,做此记录,如有帮助,欢迎点赞关注收藏!
    领券
    问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档