从 SQL Server 检索并压缩 Word 文档

发布于 2024-10-30 19:28:58 字数 216 浏览 1 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

阿楠 2024-11-06 19:28:58

您可以使用 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.

梓梦 2024-11-06 19:28:58

使用 SharpZipLib 您可以在内存中创建 zip 流。

With SharpZipLib you can create in memory zip streams.

倾城月光淡如水﹏ 2024-11-06 19:28:58

我使用 DotNetZip 做了一些非常类似的事情。重量轻,使用方便,没有遇到任何问题。

I've used DotNetZip to do something very similar. Light weight, easy to use, no problems encountered.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文