Compact Framework 的异步压缩库
我正在寻找异步压缩和解压缩流。我所说的异步是指它支持 BeginRead、EndRead、BeginWrite 和 EndWrite。我发现唯一声称拥有的库是 本机.NET 类。 (我还没有尝试过,但看起来他们支持)。我希望为 Compact Framework 2.0 版编写此内容,该版本不包含本机压缩类。我知道 DotNetZip 和 SharpZipLib,但据我所知,都不支持异步函数。
I'm looking for Asynchronous Compression and Decompression Streaming. By asynchronous I mean it supports BeginRead, EndRead, BeginWrite, and EndWrite. The only library that I've found that claims to is the native .NET classes. (I haven't tried them out yet, but it looks like they support it). I'm hoping to write this for the Compact Framework version 2.0, which doesn't contain the native compression classes. I'm aware of DotNetZip and SharpZipLib, but neither support the asynchronous functions, from what I can tell.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
虽然它是一个商业库,但请查看 Xceed Zip for .NET。
它支持批处理(开始/结束)和事件。这是一个非常好的库,支持完整和紧凑的框架。
Although it's a commercial library, check out Xceed Zip for .NET.
It has support for batching (Begin/End) and events. It's a really nice library with support for both full and compact frameworks.