如何在 Windows Mobile 中解压 .zip 文件?
我需要以编程方式将 zip 存档解压到 Windows Mobile 上的文件夹中。 是否有一个易于使用的 API 可以直接使用,还是应该使用一些外部库?
I need to programaticaly unpack a zip archive to folder on Windows Mobile. Is there an easy to use API that I can use directly or should I go with some external library?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要一个外部库。 有一个 zlibce.dll,这是一个本机 DLL,如果您喜欢 C++,则可以使用它。
如果您喜欢 .NET,那么我可以推荐 DotNetZip,它在 .NETCF 2.0 上运行,是免费的、开放的来源,并且具有良好的文档,良好的性能。 在DotNetZip源代码发行版中,有一个CF-Unzipper项目可以查看和编译; 它演示了如何在设备上解压缩文件。 您可以通过以下链接查看设备应用的代码。
这是代码中与 zip 相关的部分的片段。 它将解压缩到一个目录,该目录的名称取自 zip 文件(不带 .zip 扩展名)。
以下是该库该文档的在线版本的链接。
You need an external library. There is a zlibce.dll, a native DLL that you can use if C++ is your thang.
If .NET is your thing then I can recommend DotNetZip, which runs on the .NETCF 2.0, is free, open source, and has good doc, good performance. In the DotNetZip source distrib, there's a CF-Unzipper project that you can view and compile; it demonstrates how to unzip files on the device. Here's a link where you can view the code for the device app.
This is a snip of the zip-relevant parts of the code. It unzips to a directory that takes its name from the zip file (without the .zip extension).
Here's a link to an online version of the doc for the library.
如果您使用 .Net Compact Framework,则可以使用 http://www.icsharpcode.net/OpenSource /SharpZipLib。 我相信它支持在CF上运行。
If you're using .Net Compact Framework you could go with http://www.icsharpcode.net/OpenSource/SharpZipLib. I believe it supports running on CF.
无论您使用哪种语言,都可以使用 Info-ZIP 作为外部可执行文件。
Regardless of what language you use you can use Info-ZIP as an external executable.