从 SQL Server 检索并压缩 Word 文档
我有一个 ASP.NET 应用程序,它使用 SQL Server 2005 数据库来存储 Word 文档。应用程序要求之一是,当用户单击按钮时,系统从数据库中检索一定数量的 Word 文档,将它们压缩到内存中,并允许用户将 zip 文件保存到磁盘。
是否有一个 zip 库可以提供在内存中压缩文件的功能?我见过的少数几个是从文件系统读取的。
任何想法都将不胜感激。
谢谢
I have an ASP.NET app that uses a SQL Server 2005 database to store word documents. One of the application requirements is that when a user clicks a button, the system retrieves some number of word documents from the db, zips them up in memory and allows the user to save the zip file to disk.
Is there a zip library that provides the ability to zip up files in memory? The few that I've seen read from the file system.
Any thoughts are greatly appreciated.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 GZipStream 来执行此操作。您可以使用内存流支持它,并在压缩后将字节写入响应。
you can use a GZipStream to do this. You can back it with a memorystream and write the bytes out to the response once they're compressed.
使用 SharpZipLib 您可以在内存中创建 zip 流。
With SharpZipLib you can create in memory zip streams.
我使用 DotNetZip 做了一些非常类似的事情。重量轻,使用方便,没有遇到任何问题。
I've used DotNetZip to do something very similar. Light weight, easy to use, no problems encountered.